我使用Webpack捆绑了所有的npm模块。这是我的webpack.config.js:
"use strict";
module.exports = {
entry: './main.js',
output: { path: __dirname, filename: 'bundle.js' },
module: {
loaders: [
{
test: /.js?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react']
}
},
{test: /\.json$/, loader: "json"},
]
},
};
这是我所指的main.js。如您所见,我尝试导入React,React-dom,fixed-data-table,chartjs,jquery和visjs。
import React from 'react';
import ReactDOM from 'react-dom';
import {Table, Column, Cell} from 'fixed-data-table';
import Chart from 'chartjs';
import jquery from 'jquery';
import vis from 'vis';
一切都很好,我将index.html中的react,chartjs,jquery等src放在一起,只是简单地引用新创建的bundle.js。
在我的函数.js文件中,内容源自,我的反应类是,我将以下内容添加到开头(我假设错误源自)
import React from './bundle';
import ReactDOM from './bundle';
import {Table, Column, Cell} from './bundle';
import Chart from './bundle';
import vis from './bundle';
这导致我的浏览器开发工具给我错误:Uncaught Referenceerror:React未定义。
捆绑过程中我哪里出错了?我假设捆绑很好,因为没有错误。但是如何正确导入另一个.js文件中的React?
这是我的package.json:
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-runtime": "^6.3.19",
"chartjs": "^0.3.24",
"webpack": "^1.12.9"
},
"dependencies": {
"chartjs": "^0.3.24",
"fixed-data-table": "^0.6.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"vis": "^4.17.0"
}
}
答案 0 :(得分:3)
Webpack将从'./main.js'
开始并读取import
语句以确定需要捆绑的模块。
<强>更新强>
由于库已经在bundle.js中,因此您的文件应如下所示:
Index.html(不包括任何已在您编写的.js文件中导入的库)
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div id="app"></div>
<script src="bundle.js"></script>
</body>
</html>
main.js:
import React from 'react';
....
答案 1 :(得分:3)
您无法从'bundle.js'导入,因为它已编译为ES5且ES5不支持模块(导入和导出)。
将React导入另一个js的正确方法是通过导入
import React from 'react'
您可以在以下位置找到有关模块的更多信息: https://www.sitepoint.com/understanding-es6-modules/