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

路由载入js

怎样让页面和js同时载入?就是templateUlr载入完页面,接着载入依赖的js。

正在回答

1 回答

用$stateProvider,template即页面,controller对应相应的js,如:

$stateProvider.state('root', {
  url: '/',
  views: {
    "header": {
      template: require('./modules/menu/header.html'),
      controller: require('./modules/menu/headerCtrl.js')
    },
    'content':{
      template: require('./modules/welcome/welcome.html')
    },
    "footer": {
      template: require('./modules/footer/footer.html')
    }
  }
})


0 回复 有任何疑惑可以回复我~
#1

番茄乌梅 提问者

非常感谢!
2016-07-18 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

路由载入js

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