在模板属性中使用div标签有什么用 - AngularJS

时间:2014-08-26 10:14:18

标签: angularjs angular-ui

以下行做了什么

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'
        })

1 个答案:

答案 0 :(得分:1)

它与templateUrl的作用相同,只是为了对URL加载模板执行AJAX请求,它直接从template属性的值获取它。