- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有两个 html 页面,snippet1.html
& snippet2.html
.我想在我的指令中使用它们。因为我要使用单个指令添加多个模板。
我通过在 <script>
中添加 html 模板来尝试这个东西标记并给出 type="text/ng-template"
像下面这样给他们。
<script type="text/ng-template" id="snippet1.html">
<div>Here is Snippet one</div>
</script>
<script type="text/ng-template" id="snippet2.html">
<div>Here is Snippet two</div>
</script>
然后我使用 $templateCache.get('snippet1.html')
.此实现工作正常。
但在我的例子中,我需要从 html 本身加载它们,所以我决定通过 ajax 加载模板并制作 $http
cache: $templateCache
运行 block
myApp.run(['$templateCache','$http', function($templateCache, $http){
$http.get('snippet1.html',{ cache : $templateCache });
$http.get('snippet2.html',{ cache : $templateCache });
}]);
但是在我的 Controller 里面 $templateCache.get('snippet1.html')
未定义。
我的问题是,为什么当我在 <script>' tag & Why it don't work when I html inside
中声明模板时它仍然有效? $模板缓存 while making
$http` ajax 调用?
谁能帮我解决这个问题?或者我在代码中遗漏了任何内容。
帮助将不胜感激。谢谢。
最佳答案
这是一个有趣的问题,我可以提供一个有趣的解决方法以及我对正在发生的事情的看法。我认为可能存在更好的解决方案,但找到这样的解决方案也被证明是一个挑战。尽管如此,我认为主要问题只是您的 console.log($templateCache.get('snippet1.html'))
正在返回 undefined
因为你的 $http.get
存在竞争条件先不解决。
检查 $templateCache 的 API ,我找不到任何有用的方法来了解模板何时通过 ajax 请求解析。要查看简单问题,请在指令中运行此命令以查看有关当前存储在 $templateCache
中的一些基本信息。
console.log($templateCache.info())
结果为
Object {id: "templates", size: 0}
为了观察问题的核心,在指令中运行相同的 JS,但超时
setTimeout(function() {
console.log($templateCache.info())
}, 1000);
结果为
Object {id: "templates", size: 2}
很有趣,所以它们就在那里……但是现在要处理它们是一个挑战。我精心设计了以下解决方法,至少可以暂时为我们提供一些帮助。注入(inject) $q
和 $rootScope
进入你的.run
如此运作
myApp.run(['$templateCache', '$http', '$q', '$rootScope', function($templateCache, $http, $q, $rootScope){
$q.all([
$http.get('snippet1.html',{ cache : $templateCache }),
$http.get('snippet2.html',{ cache : $templateCache })
]).then(function(resp){
$rootScope.templateCache = resp
})
}]
);
检查这个,你会注意到我放置了一个任意的 var
在我们的 $rootScope
因此 $rootScope.templateCache
为了放置 $watch
在我们的指令中。然后在我们的指令中,让我们调用我们的 $templateCache
当我们知道 $rootScope.templateCache
上有一个值时, 表示 $q
服务兑现了我们的 promise
link: function(scope, element, attrs) {
scope.$parent.$parent.$watch('templateCache', function(n, o) {
if(n) {
element.append($compile($templateCache.get('snippet1.html')[1])(scope));
}
});
}
嘿,看!我们的模板指令已正确呈现。看起来很古怪scope.$parent.$parent
是因为在这个指令中,我们隔离了我们的 scope
现在需要爬上一些梯子才能获得在 $rootScope
上定义的值.
我希望我们能找到更简洁更简洁的方法吗?当然!但是,希望这能确定发生这种情况的原因,以及目前启动和运行的可能方法。下面提供了工作 plunker。
这是解决这个问题的完全不同的方法,它涉及手动引导
var providers = {};
var $injector = angular.injector(['ng']);
var myApp = angular.module('myApp', []);
$injector.invoke(function($http, $q, $templateCache, $document) {
$q.all([
$http.get('snippet1.html',{ cache : $templateCache }),
$http.get('snippet2.html',{ cache : $templateCache })
]).then(function(resp){
providers.cacheProvider = $templateCache;
angular.bootstrap($document, ['myApp']);
});
});
myApp
.controller('test',function() {
})
.directive('myTemplate', function ($templateCache, $compile) {
return {
restrict: 'EA',
scope: {
snippets: '='
},
link: function(scope, element, attrs) {
element.append($compile(providers.cacheProvider.get('snippet1.html')[1])(scope));
}
};
});
关于javascript - $templateCache 在指令中未定义,尽管我在 $http 调用中设置了 `{cache: $templateCache}`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28487174/
我有两个 html 页面,snippet1.html & snippet2.html .我想在我的指令中使用它们。因为我要使用单个指令添加多个模板。 我通过在 中添加 html 模板来尝试这个东西标
我想查看$templateCache的内容通过从 devtool 的控制台访问它。 我尝试了以下给出的解决方案:https://stackoverflow.com/a/24711132 . 这对我不起
我一直在从 $templateCache 加载模板时遇到问题。 我如何将模板放入 $templateCache : var app = angular.module('anglober', ['ang
我正在尝试在 AngularStrap 弹出窗口中加载模板文件,但是我在使用 $templateCache 时遇到问题。我似乎比其他问题退了一步,因此这看起来是双重的。 根据 API 文档,我添加了
我正在尝试在 AngularStrap 弹出窗口中加载模板文件,但是我在使用 $templateCache 时遇到问题。我似乎比其他问题退了一步,因此这看起来是双重的。 根据 API 文档,我添加了
我对 $templateCache 资源有点困惑; html/template 会存储在服务器端吗? 或者将存储在浏览器内存中?如果是这样,内存限制是多少? 最佳答案 $templateCache 是
我不想延迟加载我的路线模板。相反,我想在执行任何路由之前将所有路由模板加载到 $templateCache 中。 这就是我正在做的事情: angular.module('myApp', ['ngRou
我正在使用 gulp-angular-templatecache用我所有的模板创建一个模块。这工作正常,我得到一个这样的模块: angular.module("starter.templates").
在分析大型 AngularJS 应用程序时,我开始跟踪 $templateCache。 https://docs.angularjs.org/api/ng/service/ $模板缓存 这个对象是什么
能否在保持对原始提供者的引用的同时覆盖像 $templateCache 这样的核心提供者?我想覆盖 $templateCache 以区分大小写。 即像 var normalGet = $templat
我有 $http.get 所有的 html 模板到 $TemplateCache 中,我的问题是我的指令使用起来是否更有效 TemplateUrl : abc.html 或者 Template : $
我正在使用 gulp-angular-templatecache生成一个 templateCache.js 文件,它将我所有的 HTML 模板文件合并为 1。(my full gulpfile) 将该
要么是我的代码出问题了,要么是我犯了一个错误: 我有一个 json 提要: { "sections": [ { "identifier": "header", "b
当我的 Angular Controller 初始化时,我需要缓存一些 HTML 文件。 根据 Angular $templateCache documentation我可以使用以下命令将 HTML
我试图在列表中显示项目的详细信息。这应该通过延迟加载模板(DOM 的细节)来完成,因为模板非常大,列表中有很多项目,所以带有 ng-include 的 ng-show 不起作用,因为它被编译成DOM
我已经阅读了 $templateCache 的文档,但我仍在努力理解如何使用 put 函数将远程模板加载到缓存中。 下面是一个例子: onBoardingApp.run(function ($temp
目前正在处理一个大的 html 文件(7k+ 行代码)。我必须重构整个事情。以前负责代码的人使用下面介绍的方法将特定模板加载到缓存中,以便通过 ng-include 使用。 Example
我目前正在构建一个 Angular 应用程序,它需要通过脚本标记嵌入到任何其他网页上。 在使用 resumeBootStrap 初始化应用程序之前,我决定使用一些 JS 构建应用程序包装器、ng-vi
我想在不同的 js 库之间共享缓存的模板字符串,并且需要为 Angular 应用程序调用 $templateCache.get("TEMPLATE.HTML")。Angular 应用程序在公共(pub
我使用 Angular 模板缓存。按照存在的代码删除应用程序模块中的模板缓存,但我需要在开发机器上使用 gulp 删除所有 templateCache。 myApp.run(function($roo
我是一名优秀的程序员,十分优秀!