我在 url www.myapp.com/office/tarif 有一个角度应用程序我的路线配置:
$routeProvider.
when('/', {
templateUrl: '/angular/template/index',
controller: 'TarifCtrl',
}).
when('/order', {
templateUrl: '/angular/template/order',
controller: 'TarifCtrl',
});
HTML5mode 设置为 false。当我转到 www.myapp.com/office/tarif 时,它会将 #/ 添加到 url 的末尾,并且在 chrome 中工作正常,但在 ie8 中它不是呈现模板。如果我去 www.myapp.com/office/tarif#/ 它也可以正常工作。当我去 www.myapp.com/office/tarif/order 它只是在 chrome 中再次呈现索引模板(并且在 ie8 中不呈现任何内容)。我之前使用过 html5mode,它工作正常,但现在我需要支持 ie8,所以我需要帮助。