AngularJS 中有什么方法可以从 url 中预取数据。我听说过模板缓存。模板缓存可以从路径加载内容吗?我已经创建了一个指令,但是我遇到了问题。当我使用模板时,预加载 html,但是当我使用 templateURL 时,它不是从路径预加载 html,只在需要时加载。但我需要预加载数据。那可能吗 ?
cmsApp.directive('ptnPopup', function() {
return {
restrict: 'E',
transclude: true,
controller: 'MainCtrl',
template: '<div>{{bid}}</div>',
//templateUrl: './template/popups/primary_trading_name.html',
link: function(scope, element, attrs) {
scope.bid = 5;
}
};
});