如何呈现' JSON get'请求到HTML页面?
我的代码:
var mId = 'MZWZMVZWJWY24';
var request = require("request");
var options = { method: 'GET',
url: 'https://api.clover.com:443/v3/merchants/'+ mId +'/address',
headers: {
'Cache-Control': 'no-cache',
Authorization: 'Bearer efcbbf20-e31f-11db-892c-eddc691f7a33'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
我想将结果发送到page.html
答案 0 :(得分:3)
由于您使用的是Node.JS,因此您还必须创建Web服务器才能呈现您收到的JSON数据。你可以用快车和把手做到这一点。
您将使用服务器呈现HTML页面,而把手则在页面上显示数据。
如果您有兴趣,互联网上有很多关于把手和Node.JS的教程