以下行做了什么
template: '<div ui-view class="fade-in-down"></div>'
我使用过templateUrl属性但是模板属性做了什么?
.state('app.page', {
url: '/page',
template: '<div ui-view class="fade-in-down"></div>'
})
.state('app.page.profile', {
url: '/profile',
templateUrl: 'tpl/page_profile.html'
})
答案 0 :(得分:1)
它与templateUrl的作用相同,只是为了对URL加载模板执行AJAX请求,它直接从template
属性的值获取它。