我是后端代码的新手,并且我正在尝试创建一个将响应我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字符串进行响应。我需要放置其他内容类型吗?该函数应该将该值传递给客户端的另一个用户吗?
谢谢你的帮助!
res.json({“ Key”:“ Value”});
—
Amol M Kulkarni,2015年