下载语义UI后似乎出现了一个奇怪的错误,选择了我想做的事,并且不想在custom.semantic.json文件中运行时,我也无法运行它。我也尝试过将jQuery包下载/安装到我的目录中而没有任何乐趣。错误消息如下。

>/Users/Kyle/.meteor/packages/meteor-tool/.1.1.3.1wysac9++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:245
                        throw(ex);
                              ^

> ReferenceError: jQuery is not defined
>     at app/definitions/behaviors/api.js:1081:5
>     at app/definitions/behaviors/api.js:1083:3
>     at /Users/Kyle/Desktop/portfolio/.meteor/local/build/programs/server/boot.js:222:10
>     at Array.forEach (native)
>     at Function._.each._.forEach (/Users/Kyle/.meteor/packages/meteor-tool/.1.1.3.1wysac9++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/underscore/underscore.js:79:11)
>     at /Users/Kyle/Desktop/portfolio/.meteor/local/build/programs/server/boot.js:117:5
> Exited with code: 8 Your application is crashing. Waiting for file
> change.

最佳答案

在Meteor中,当custom.semantic.json位于根的lib/文件夹中时,会发生这种情况。因此,Semantic-UI生成其所有文件夹和文件lib/,该文件和文件在jQuery等任何核心依赖项之前加载。

解决方案是将custom.semantic.json放在应用程序文件夹中,例如client/lib/semantic-ui/

关于javascript - meteor 应用中的“jQuery未定义”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31504801/

10-09 17:39