gpt4 book ai didi

javascript - 为什么我的 React 组件无法获取我需要的库?

转载 作者:行者123 更新时间:2023-12-03 07:56:05 25 4
gpt4 key购买 nike

我正在尝试在我的 React 项目中使用 FullCalendar.io。

我已使用 npm install fullcalendar 安装了它。

我在目录中看到 node_modules/fullcalendar

在我的项目中,我使用:

var Scheduler = require('fullcalendar');

然后我有:

var Calendar = React.createClass({

componentDidMount: function () {

$('#calendar').fullCalendar();
},

render: function () {
return (
<div id='calendar'>
</div>
);
}
});

但我收到此错误:Uncaught TypeError: $(...).fullCalendar is not a function

(旁注 - 需要其他模块工作正常。我可以执行 var moment = require('moment') 然后执行 console.log(moment())它输出一个新的矩变量。)

最佳答案

确保需要每个组件中需要启动的所有库。仅将其放在需要转换/捆绑的文件的索引文件中是行不通的。 (在 React 应用程序中需要使用 jQuery 有点可悲,因为 jQuery 是为了克服不知道元素在哪里/什么的问题,而在 React 中你总是知道你的元素是什么)

关于javascript - 为什么我的 React 组件无法获取我需要的库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34794887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com