我正在尝试设置一个项目以使用 javascriptmvc 和 twitter 引导程序。我使用 javascript mvc 内置的应用生成器来创建文件结构,然后添加了资源目录。
-AppRoot
-documentjs
-funcunit
-jquery
-appname
-fixtures
-models
-resources
-css
-js
-img
.
.
.
-appname.html
-appname.js
我已经配置了我的 appname.js,它的内容如下:
steal(
'./appname.css', // application CSS file
'./models/models.js', // steals all your models
'./fixtures/fixtures.js' // sets up fixtures for your models
).then(
'./resources/bootstrap/css/bootstrap.min.css',
'./resources/bootstrap/js/bootstrap.min.js',
function () { // configure your application
}
)
似乎没有包含任何引导文件。任何关于正确设置 javascriptmvc 和引导程序的想法/建议将不胜感激。