748990
http://api.81p.net/api?p=json&t=jisupk10&token=15414985AABD5796&limit=1,各位大神,怎么样获得这个接口的数据呢???新手,麻烦请附上代码,感谢!!!! 自己的代码如下,但是报错; var http = require("http");
var options = { // host: 'api.81p.net/api?p=json&t=jisupk10&token=15414985AABD5796&limit=1' host: 'api.81p.net', path: '/api?p=json&t=jisupk10&token=15414985AABD5796&limit=1' };
http.get(options, function (http_res) { // initialize the container for our data var data = "";
// this event fires many times, each time collecting another piece of the response
http_res.on("data", function (chunk) {
// append this chunk to our growing `data` var
data += chunk;
});
// this event fires *one* time, after all the `data` events/chunks have been gathered
http_res.on("end", function () {
// you can use res.send instead of console.log to output via express
console.log(data);
});
});