0
我想使用UI路由器在我的div中預加載模板。 這是我的template.html文件,它位於/ templates文件夾中。如何在我的UI視圖中預加載模板
// its location is templates/template1.html
<div>
Template 1
</div>
angularjs中的.config函數具有以下代碼,其中包含狀態。這裏模板1是狀態1
.state('state1',{
url:'/state1',
templateUrl:'templates/state1.html',
controller: 'state1Controller',
})
.state('state1.template1',{
templateUrl: 'templates/template1.html'
})
當我按下一個按鈕模板1被加載的子狀態,但我想預先加載的模板。我能做些什麼來達到我想要的結果?