我有这样的路线设置:var myApp = angular.module('myApp', []). config(['$routeProvider', function ($routeProvider) { $routeProvider. when('/landing', { templateUrl: '/landing-partial', controller: landingController }). when('/:wkspId/query', { templateUrl: '/query-partial', controller: queryController }). otherwise({ redirectTo: '/landing' });}]);我希望能够让angularjs在开始时下载部分内容,而不是在请求时下载。可能吗?
3 回答
- 3 回答
- 0 关注
- 518 浏览
添加回答
举报
0/150
提交
取消