我有尋呼機指令,它依賴於在控制器中接收到的異步數據。由於尋呼機需要知道總數才能正確呈現頁面,我想隱藏整個尋呼機,直到下載異步數據,然後顯示它(但在顯示之前,運行鏈接功能以設置尋呼機信息)以及數據。Angular JS Refresh Pager指令
這怎麼可能?
(function() {
'use strict';
angular
.module('App.widgets')
.directive('customPager', customPager);
function customPager() {
var pager = {
scope: {
pageIndex: '=',
pageSize: '=',
recordCount: '=',
pageClick: '&onPageClick'
},
replace: true,
restrict: 'E',
templateUrl: 'custom-pager.html',
link: link
}
return pager;
function link(scope) {
....
}
}})();
您使用的服務來獲取你的數據的請求(退房$emit),當廣播一個事件? – Jorg
正確,從控制器調用服務中獲取數據 – zhuber