2013-03-24 54 views
2

我用bower install threejs安裝了three.js。如何開始yeoman和three.js?

然後在此之後我希望有three.js所在我的網頁,所以我的app.js文件開頭:

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

然而,當我的頁面加載瀏覽器控制檯顯示:

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?

回答

2

解決方法如下。

app.js文件需要引用上面的「three」,這指的是具有以下內容的文件main.js。

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

這裏的關鍵是threejs three.js文件所在的三點。