我现在正在评估 node-webkit 作为使用 Web 技术构建桌面应用程序的可能解决方案,并且有一个小问题。该应用程序正在使用 AngularJS,我遇到的问题是似乎没有正确加载我的 html 模板文件。
我的测试应用程序有这个配置:
nucleusApps.config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
$locationProvider.html5Mode(true);
$routeProvider
.when('/style', {
templateUrl: '/templates/core/style.html',
controller: nucleusApps.controllers.Style
})
.otherwise({redirectTo: '/style'});
}]);
问题是我收到以下错误:
Failed to load resource file://templates/core/style.html
我为 templateUrl 尝试了多种不同的格式,包括:
./templates/core/style.html
file://template/core/style.html
但我不断收到这个错误。我的目录结构也是:
-index.html
-package.json
-css
-file.css
-etc...
-templates
-core
style.html
-etc...
这就是被拉上拉链的东西。
你知道我为什么会收到这个错误吗?
- 更新 -
不知道这里发生了什么,但刚刚更新了我的代码(我正在构建的网络版本),现在一切正常。旧代码中一定有一些奇怪的东西