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.
我想访问 chank 数据,但它不起作用。我的代码有什么问题吗?我的代码:
else if (req.url === "/userdata" && req.method === "POST") { req.on("data", (chunk) => { console.log(chunk) }) res.write("Taanks") res.end() }