0
我試着使用溫泉與AngularJS工作,但是當我調用腳本我有404錯誤沒有發現,這是的arent工作溫泉UI不是AngularJS項目
<link rel="stylesheet" href="onsenui.css"/>
<link rel="stylesheet" href="onsen-css-components.css"/>
<script src="angular.min.js"></script>
<script src="onsenui.min.js"></script>
<script src="angular-onsenui.min.js"></script>
我已經安裝了溫泉UI腳本與故宮,我也有它的節點模塊,並且我已經在模塊中稱它太
var app = angular.module('app',['ngRoute','app.routes', 'app.core',
'onsen']);
app.controller('AppCtrl',function(){});
任何想法,我能做些什麼,使工作?
我所要做的就是var require = require(node_modules/onsenui)? –
是的,但你應該包含模塊中的'.js'文件...所以'require(../ node_modules/onsenui/js/angular-onsenui.js)'或類似的東西。看一看node_modules。你可以看到結構,並且該文件肯定在JS文件夾中。不要忘記在你的裝載器中包含CSS。 – mutantkeyboard
我安裝了npm,現在當我嘗試使用它,給我錯誤「require is not defined」 –