2

我用bower install threejs.

然后在此之后我希望在我的页面中有三个.js,所以我的 app.js 文件以:

define(["jquery", "three"], function() {
  "use strict";

但是,当我的页面加载 Chrome 控制台时显示:

Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:9000/scripts/three.js
Uncaught Error: Script error

那么,它不应该像 jQuery 那样在组件中查找吗?

基本上我怎样才能开始使用 yeoman 并安装three.js?

4

1 回答 1

2

解决方法如下。

app.js 文件需要引用上面的“三”,这里指的是 main.js 文件,它有以下内容。

require.config({
    paths: {
        jquery: '../components/jquery/jquery',
        three: '../components/threejs/build/three'
    },
    shim: {
        bootstrap: {
            deps: ['jquery'],
            exports: 'jquery'
        }
    }
});

这里的关键是threejs three.js文件所在的三个点。

于 2013-03-24T07:24:01.270 回答