我有2个应用 os.environ['TDSVER'] = '8.0'
&的 app1
app1.js
app2
var app = angular.module("app1", ["ngRoute"]); app.config(['$routeProvider', function ($routeProvider) { $routeProvider.when('/view3', { templateUrl: 'http://localhost:40/partials/partial3.html', controller: 'MyCtrl1 as self' }); $routeProvider.otherwise({ redirectTo: '/view3' }); }]);
有app1
个模块,路由配置
app2.js
ngRoute
var app = angular.module("app2", ["app1"]);
有app2
个模块
注意: app1
在app1
& localhost:40
中的app2
。
问题是: localhost:50
如何在不注入app1
的情况下使用ngRoute
路由配置?
我使用
,它就有效app2
&运行app2
如果我在requirejs
中注入ngRoute