我正试图通过node.js从embed.ly获取数据。
一切看起来都很好,但它在数据前放了一个“未定义的”:
可能和setencoding('utf8'有关?
结果如下:
undefined[{ validjson }]
功能:
function loadDataFromEmbedLy( params, queue ){
try {
var body;
var options = {
host: 'api.embed.ly',
port: 80,
path: '/1/oembed?wmode=opaque&key=key&urls='+params,
method: 'GET',
headers: {'user-agent': ''}
};
var req = http.request(options, function(res) {
res.setEncoding('utf8');
res.on('end', function() {
if( typeof body != 'undefined' ){
console.log( body );
}
});
res.on('data', function ( chunk ) {
if( typeof chunk != 'undefined' ){
body += chunk;
}
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
req.end();
} catch(e) { console.log("error " + e); }
}
最佳答案
这是因为body
最初是未定义的。当您使用+=
附加到它时,它会将它附加到字符串“undefined”。我希望这有道理。
解决方案:将body
声明为空字符串:var body = "";
第二:我真的建议去看看Mikeal Rogers的request。
编辑:请求比基本的http api简单一些。你的例子:
function loadDataFromEmbedLy (params) {
var options = {
url: 'http://api.embed.ly/1/oembed',
qs: {
wmode: 'opaque',
urls: params
},
json: true
};
request(options, function (err, res, body) {
console.log(body);
});
}
关于json - json的node.js http.request,在json前面未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23139588/