我正在尝试将 AngularJS 网络应用程序转换为多设备应用程序。
在 Web 应用程序中,我使用了 ngRoute。基本上是这样的
app.config(['$routeProvider',function ($routeProvider) {
$routeProvider
.when('/Home',
{
controller: 'homeCtr',
templateUrl: '/scripts/app/modules/home/home.html'
})
}]);
在 index html 页面中有一个简单的 href 和 ngView,如下所示:
<a ng-href="#/Home">Go to Home</a>
<div data-ng-view="">
</div>
如果我在 Ripple for android 中运行应用程序,它就像一个魅力,但在 Windows 或 Windows ARM 上根本不起作用!似乎它不知道如何解释链接上的#。
我该如何解决?
谢谢!