我有這樣的路線設置: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在開始時下載部分內容,而不是在請求時下載。可能嗎?
查看完整描述