当我尝试为我的Node服务器构建应用程序时,我不断收到描述中的错误。
我最终试图为docxtemplater读取.docx文件,但没有&#f; fs'工作,它不是很好看。
我曾尝试使用我在许多解决方案中看到的节点:{fs:" empty"}解决方法,但它仍然给我相同的错误或传播我在浏览器上运行它时到控制台。
以下是我在webpack.config.js中的内容:
var path = require('path');
var webpack = require('webpack');
//var HtmlWebpackPlugin = require('html-webpack-plugin');
var UglifyJsPlugin = require('uglifyjs-webpack-plugin');
var DashboardPlugin = require('webpack-dashboard/plugin');
const sourcePath = path.join(__dirname, './front_end');
const buildPath = path.join(__dirname, './src/bin');
module.exports = {
devtool: 'source-map',
//home directory for webpack must be absolute
//context: sourcePath,
//Application Execution and Webpack Bundling
entry: {
js: path.join(sourcePath, 'index.js')
//html: './index.html',
},
output: {
//Must be absolute path
path: sourcePath,
//publicPath: buildPath,
//publicPath: path.join(__dirname, '/src/bin'),
filename: "bundle.js"
},
resolve: {
extensions: [
'.webpack-loader.js',
'.web-loader.js',
'.loader.js',
'.js',
'.jsx'
],
modules: [
path.join(__dirname),
"node_modules"
],
},
module: {
rules: [
{
test: /\.js$|\.jsx$/,
exclude: /node_modules/,
use: [
"babel-loader",
"eslint-loader",
]
},
{
test: /\.html/,
exclude: /node_modules/,
use: [
"file-loader",
]
},
{
test: /\.css/,
exclude: /node_modules/,
use: [
"style-loader",
'css-loader'
]
},
{
test: /\.(gif|png)/,
exclude: /node_modules/,
use: [
"url-loader"
]
}
],
loaders: [
{
test: /\.js$|\.jsx$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2016', 'react']
}
},
{
test: /\.css$/,
loader: 'style-loader',
use: ['style-loader', 'css-loader'],
exclude: /node_modules/
},
{
test: /\.html$/,
loader: "file?name=[name].[ext]"
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?bypassOnDebug&optimizationLevel=7&interlaced=false'
]
}
]
},
plugins: [
],
stats: {
assets: true,
colors: true,
errors: true,
errorDetails: true,
hash: true,
}
};
答案 0 :(得分:2)
添加package.json
"browser": {
"crypto": false,
"fs": false,
"path": false,
"os": false,
"net": false,
"stream": false,
"tls": false
},
添加webpack:
node: { fs: 'empty' },
devtool: options.devtool,
target: 'web', // Make web variables accessible to webpack, e.g. window
答案 1 :(得分:1)
您无法在浏览器中使用Node Core API附带的任何模块,他们只是在那里工作。节点核心模块依赖于C / C ++二进制文件,这些二进制文件不会出现在浏览器中。因此,您需要找到一种等效方法来替换您的反应应用中的任何fs
用法。
一种方法是通过Node JS后端将您希望通过HTTP处理的文件提供给您的React应用程序。您可以在节点服务器中使用fs
读取文件,并将该逻辑放在路由中,通过HTTP从React App调用该路由并将其流回。然后,您将在React App中获得文件数据,并可以根据需要使用它。
This GitHub repo有一个节点核心库列表,Webpack已移植这些节点核心库以供浏览器使用。很遗憾fs
不是其中之一。
答案 2 :(得分:0)
我来晚了,但这是docxtemplater具体的。
要加载docx,您可以在节点中使用fs
,在浏览器中使用JSZipUtils.getBinaryContent
。
请参阅此演示(从此处:http://docxtemplater.readthedocs.io/en/latest/generate.html#browser)
<html>
<script src="docxtemplater.js"></script>
<script src="jszip.js"></script>
<script src="vendor/file-saver.min.js"></script>
<script src="vendor/jszip-utils.js"></script>
<!--
Mandatory in IE 6, 7, 8 and 9.
-->
<!--[if IE]>
<script type="text/javascript" src="examples/vendor/jszip-utils-ie.js"></script>
<![endif]-->
<script>
function loadFile(url,callback){
JSZipUtils.getBinaryContent(url,callback);
}
loadFile("examples/tag-example.docx",function(error,content){
if (error) { throw error };
var zip = new JSZip(content);
var doc=new Docxtemplater().loadZip(zip)
doc.setData({
first_name: 'John',
last_name: 'Doe',
phone: '0652455478',
description: 'New Website'
});
try {
// render the document (replace all occurences of {first_name} by John, {last_name} by Doe, ...)
doc.render()
}
catch (error) {
var e = {
message: error.message,
name: error.name,
stack: error.stack,
properties: error.properties,
}
console.log(JSON.stringify({error: e}));
// The error thrown here contains additional information when logged with JSON.stringify (it contains a property object).
throw error;
}
var out=doc.getZip().generate({
type:"blob",
mimeType: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
}) //Output the document using Data-URI
saveAs(out,"output.docx")
})
</script>
</html>