Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须将 pdf 文件上传到 Backblaze 存储桶。仅接受缓冲区。PDF 文件已存储在我的目录之一中。我可以通过 fs 访问该 pdf。
上传时我必须提供缓冲区。获得缓冲区的最佳方法是什么?
我找到了不使用缓冲区的简单方法。我可以将文件路径传递给 fs 中的 readFileSync()
例子 const buff = fs.readFileSync("pdfs/abcd.pdf")
const buff = fs.readFileSync("pdfs/abcd.pdf")