我刚开始使用Foundation for Apps,但我遇到了麻烦在单独的文件夹中添加角度控制器并使用它们。
我的资产' js文件夹:
js/
app.js //this has all the controllers etc. by chaining
但我希望它是
js/
app.js
controllers/
home.controller.js
main.controller.js
我不想保留通过链接我的控制器,服务等开发的单个大型js文件。我想要一个更加模块化的结构。
当我将其更改为模块化结构时,我遇到了以下三个错误:
1. 'HomeCtrl' not defined.
2. Uncaught SyntaxError: Unexpected token < at the 1st line of home.controller.js
3. Resource interpreted as Script but transferred with MIME type text/html: "http://localhost:8079/assets/js/home.controller.js". at the point where I am including 'home.controller.js' in index.html
这是我的模板:
---
name: home
url: /
controller: HomeCtrl
---
<div class="grid-container">
<h1>Welcome to Foundation for Apps!</h1>
<p class="lead">This is version <strong>1.1 Weisshorn</strong>.</p>
</div>
home.controller.js:
app.controller('HomeCtrl', ['$scope', function($scope) {
$scope.temp = 'hello';
}]);
app.js:
var app = angular.module('application', [
'ui.router',
'ngAnimate',
'foundation',
'foundation.dynamicRouting',
'foundation.dynamicRouting.animations'
])
.config(config)
.run(run)
;
config.$inject = ['$urlRouterProvider', '$locationProvider'];
function config($urlProvider, $locationProvider) {
$urlProvider.otherwise('/');
$locationProvider.html5Mode({
enabled:false,
requireBase: false
});
}
function run() {
FastClick.attach(document.body);
}
要解决此问题,我尝试通过引用this
在gulpfile.js中添加我的控制器引用我还提到了this,但我仍然无法让它发挥作用。知道我做错了吗?
答案 0 :(得分:1)
在 gulpfile.js 内查看this line。您会看到在耦合最小化文件时仅使用client/assets/js/app.js
。您还需要复制所有控制器的 .js 文件:
// These files are for your app's JavaScript
appJS: [
'client/assets/js/app.js',
'./client/assets/js/controllers/*.js',
]
您还可以使用角度模块来保存所有控制器和放大器。服务然后将其注入您的应用程序模块。这就是我使用它的方式here,这就是在这个伟大的准备使用Fork中也是如此:https://github.com/CreativityKills/foundation-apps-template
/build/assets/js/app.js
)