我正在为authenticate with Moodle构建一个应用程序,并从Moodle Web服务获取Json数据,并使用AngularJs在应用程序中显示数据。 Moodle Web服务有多个功能,所以我需要multiple controllers in the Angular app。
我使用Visual Studio和Cordova编写应用程序。
在同事和StackOverflow的帮助下,我现在有多个Angular模式在我的单页移动应用程序中工作。 (还有关于多个模态的另一个StackOverflow问题,但它并没有告诉你如何使用http响应数据。为此,你需要使用Angular bootstrap。
(这是其中之一"问你的问题并自己回答"帖子 - 但欢迎进一步的建议。)
答案 0 :(得分:1)
$uibModal.open
可以接受resolve
参数,您可以传递pageData
之类的参数,并使用从服务器接收的数据对其进行解析。 E.g。
$uibModal.open({
templateUrl: ..,
controller: 'modalCtrl',
resolve: {
pageData: function () {
return $http.get(..).then(function (response) {
return response.data;
});
}
}
});
..
// then inject it in your modal controller
myapp.controller('modalCtrl', ['$scope', 'pageData', function ($scope, pageData) {
$scope.pageData = pageData;
}])
答案 1 :(得分:0)
步骤1.将所需的脚本标记放入HTML
<script src="scripts/angular.min.js"></script>
<script src="scripts/ui-bootstrap.js"></script>
<script src="scripts/ui-bootstrap-tpls.min.js"></script>
angular.min.js
是主要的Angular图书馆; ui-bootstrap.js
是Angular UI引导程序库; ui-bootstrap-tpls.min.js
是Angular模板脚本,可以正确显示模态模板。
步骤2.将模态模板放在HTML中,在ng-app div中
<div role="main" id="main" class="ui-content scroll" ng-app="myApp">
<!--MODAL WINDOW for item details -->
<script type="text/ng-template" id="itemModalContent.html">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="cancel right button" data-dismiss="modal" aria-hidden="true" ng-click="cancel()">
<i class="fa fa-close"></i>
</button>
<span class="item-name">{{item.name}}</span>
</div>
<div class="modal-body">
<p>{{item.description}}</p>
</div>
<div class="modal-footer">
<button type="button" class="button cancel btn-default" data-dismiss="modal" ng-click="cancel()">Cancel</button>
<button type="button" class="button ok btn-primary" ng-click="ok()">Sign me up</button>
</div>
</div>
</div>
</script>
</div>
步骤3.在myApp.js中,添加模态实例控制器
myApp.controller('myItemsModalInstanceCtrl', function ($scope, $uibModalInstance, item) {
$scope.item = item;
$scope.cancel = function () {
$uibModalInstance.close();
$('.overlay').hide();
};
});
步骤4.从项目控制器
调用模态实例控制器myApp.controller('myItemsCtrl', function ($scope, $http, $uibModal) {
url = concatUrl + 'local_servicename_ws_function_name';
$http.get(url).then(function (response) {
$scope.items = response.data;
$scope.open = function (item) {
$('.overlay').show();
var modalInstance = $uibModal.open({
controller: "myItemsModalInstanceCtrl",
templateUrl: 'myItemModalContent.html',
resolve: {
item: function () {
return item;
}
}
});
};
})
});
步骤5.添加按钮以触发模态
这会进入ng-repeat
块
<a data-toggle="modal" ng-click="open(item)">{{item.name}}</a>
附加说明
将模态模板脚本放在 ng-app
div中,但在 ng-repeat
块之外。
这适用于ng-repeat
块内的多个模态调用,以及页面中的多个ng-repeat
块和模态模板。您需要确保ng-repeat
阻止重复item in items
,并且模态模板引用item
。