为了账号安全,请及时绑定邮箱和手机立即绑定

怎样多次调用templateCache里缓存的key

var app=angular.module("myApp",[]);
app.run(function($templateCache){
    $templateCache.put("hello.html","<div>hello~~~~</div>")
})
app.directive("hello",function($templateCache){
    return{
        restrict:"AECM",
        template:$templateCache.get("hello.html"),
        repace:true    
    }        
})
app.directive("hello1",function($templateCache){
    return{
        restrice:"AECM",
        template:$templateCache.get("hello.html"),
        replace:true,    
    }    
})

正在回答

举报

0/150
提交
取消
AngularJS实战
  • 参与学习       205465    人
  • 解答问题       1158    个

一起学习AngularJS的基础教程,通过实例学习并学会AngularJS

进入课程

怎样多次调用templateCache里缓存的key

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信