如何在流星中使用jQuery UI?

Ale*_*tty 9 jquery jquery-ui meteor

在Meteor应用程序中安装jQuery UI的正确方法是什么?由于它还不是一个包,我将下载中的jquery-ui.min.js和jquery-1.8.3.js添加到lib我的meteor项目的文件夹中.这导致以下致命错误:

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.
Run Code Online (Sandbox Code Playgroud)

Tim*_*Dog 16

我实际上已经添加了一个可以安装的jquery-ui陨石包

mrt add jquery-ui

注意:这个包是16年8月1日的版本,是一个依赖jQuery的用户界面的自举包,如果已安装,将自动包括jquery-uibootstrap-updated智能包装.(所有这些都使bootstrap和jquery-ui很好地一起玩).

要安装所有内容,您可以使用: mrt add jquery-ui-bootstrap

  • 是不是'mrt add ...`而不是`mrt install`?我确定`add`有效,'install`对我不起作用 (2认同)

jtb*_*lin 13

您需要将jquery UI放在client目录中,否则Meteor会在客户端和服务器上加载它并使您的应用程序崩溃.