将 $templateCache 与 ui-router 一起使用并在 angular 1.x 中进行 uglify
Using $templateCache with ui-router and uglify in angular 1.x
将其作为问题答案分享 post。
当您必须在 ui-router 中的路由的 templateProvider
中使用 $templateCache
并且必须使用代码时该怎么办?注入不起作用,并且angular无法通过引用注入。
示例:
...
templateProvider : function($templatecache) {
...
},
...
改用这个:
...
templateProvider : ['$templateCache', function($templateCache) {
...
}],
...
将其作为问题答案分享 post。
当您必须在 ui-router 中的路由的 templateProvider
中使用 $templateCache
并且必须使用代码时该怎么办?注入不起作用,并且angular无法通过引用注入。
示例:
...
templateProvider : function($templatecache) {
...
},
...
改用这个:
...
templateProvider : ['$templateCache', function($templateCache) {
...
}],
...