0
一直在嘗試一個子目錄/grid
內部署我的角度應用程序,但什麼也不顯示here子目錄角應用託管
- 對於index.html的,我已經添加
<base href="/grid/" />
對於的火力配置,我使用
"rewrites": [ { "source" : "/grid/**/*", "destination" : "/grid/index.html" } ]
對於角配置,
angular.module('columns', [ 'ui.router', 'columns.main', ]) .config(function($stateProvider, $urlRouterProvider, $locationProvider) { 'use strict'; $locationProvider.html5Mode(true); $urlRouterProvider.otherwise('/'); $stateProvider .state('main', { url: '/', templateUrl: '/columns/main/main.html', controller: 'MainCtrl' }); });
和內部版本將有
module.run(['$templateCache', function($templateCache) { $templateCache.put('/columns/main/main.html','<something>'); }]);
如果我在本地運行和基礎標籤更改爲<base href="/" />
,它會正常工作。任何人都看到錯誤?