我的表单需要几个字段:
require("fs").readFile(file, function (err, data) {
if (!err) {
console.log(data);
} else {
console.log(err);
}
});
还有另一个功能允许用户从文件服务器渲染TWAIN中的图像,当用户决定这样做时,我需要能够而不是发布PICTURE字段(文件选择器),将图像发送给它来自本地文件的数据,并通过该文件发布。
以下是我从本地文件中获取图像数据的方法:
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: xml. Do you need to install a parser library?
那么,一旦我获取本地文件的数据,我怎样才能将其与表格中的所有其他数据一起发布?