私はjs全体に非常に新しいですので、私と一緒に忍耐してください。urlからモーダル内部の情報を表示する方法は?
トピックに記載されている簡単な作業を行う必要があります。私はいくつかの研究を行い、ui.routerを使用しようとしましたが、何かコーディングがうまくいかないので、何かが間違っていました。
私はURLからこの情報をhttp://prntscr.com/ashi5e
だからここにモーダルダイアログ内に表示されることを望んでコードです:あなたは、データを取得する必要があり
angular.module('plunker', ['ui.bootstrap']);
var ModalDemoCtrl = function ($scope, $modal, $log) {
$scope.open = function() {
var modalInstance = $modal.open({
templateUrl: 'myModalContent.html',
controller: ModalInstanceCtrl,
resolve: {
items: function() {
return $scope.items;
}
}
});
};
};
var ModalInstanceCtrl = function ($scope, $modalInstance, items) {
$scope.cancel = function() {
$modalInstance.dismiss('cancel');
};
};
<!doctype html>
<html ng-app="plunker">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.js"></script>
<script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.6.0.js"></script>
<script src="js/example.js"></script>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div ng-controller="ModalDemoCtrl">
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<h3>Log</h3>
</div>
<div class="modal-body">
Content
</div>
<div class="modal-footer">
<button class="btn btn-warning" ng-click="cancel()">Close</button>
</div>
</script>
<button class="btn" ng-click="open()">Log</button>
</div>
</body>
</html>
$ scope.items = [{id:1、name: 'test'}、{id:2、name: 'test2'}]; このようにする方法はわかっていますが、URLから情報を取得する必要があります。 – Frutis
たぶん$ http.getのようなものを使うことができますか?私はJasonと一緒に試しましたが、ローカルファイルです。どこからサーバーから情報を入手したいのですか? – Frutis
はい、あなたは正しいです。 $ http.getを使用し、そのモーダルウィンドウを開いてください。 :-) –