在Meteor應用程序中安裝jQuery UI的正確方法是什麼?由於它不是一個包,我添加了下載到我的流星項目中的lib
文件夾中的jquery-ui.min.js和jquery-1.8.3.js。這導致以下致命錯誤:如何在流星中使用jQuery UI?
Your app is crashing. Here's the latest log.
app/lib/jquery-1.8.3.js:9472
})(window);
ReferenceError: window is not defined
at app/lib/jquery-1.8.3.js:9472:5
(.........)
Exited with code: 1
Your application is crashing. Waiting for file change.
這個SO問題可能會解決您的問題http://stackoverflow.com/questions/13438127/adding-jquery-to-meteor-and-writing-it-without-errors。或者這一個http://stackoverflow.com/questions/11009971/how-to-add-other-js-vender-with-meteor –
第二個問題有幫助。我把文件移動到/ public而不是/ lib,並沒有得到一個致命的錯誤,我還沒有嘗試過使用這個庫,但是這個問題的範圍只是安裝了jQuery UI。謝謝! –