0

我正在尝试设置一个项目以使用 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 和引导程序的想法/建议将不胜感激。

4

1 回答 1

1

在您上面提到的文件结构中,您没有引导文件夹,您在资源的根目录中直接有 css、img 和 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/css/bootstrap.min.css',
    './resources/js/bootstrap.min.js',
function () {                   // configure your application

    }
)

或者将 css、img 和 js 移动到 bootstrap 文件夹中,以便包含工作。

于 2013-05-12T02:46:19.043 回答