我正在使用create-react-app来启动我的应用程序,我想在我的组件中使用d3.我正在使用节点6.3.1.我跑了
原文链接:https://www.f2er.com/react/300815.htmlnpm install d3 –save
并且可以在我的package.json中看到d3.那我为什么不拥有d3?这是我的组件类;它报告d3未定义.
import React from 'react' import d3 from 'd3' var Grid = React.createClass({ render: () => { console.log('d3',d3) // reports "d3 undefined" return (<div/>) } }) export default Grid