我是一个后端代码的新手,我正在尝试创建一个函数来响应我的 JSON 字符串。我现在有一个例子
function random(response) {
console.log("Request handler 'random was called.");
response.writeHead(200, {"Content-Type": "text/html"});
response.write("random numbers that should come in the form of json");
response.end();
}
这基本上只是打印字符串“应该以 JSON 形式出现的随机数”。我希望这样做的目的是响应一个 JSON 字符串,该字符串包含任何数字。我需要放置不同的内容类型吗?这个函数是否应该将该值传递给客户端的另一个函数?
谢谢你的帮助!