【发布时间】:2015-03-11 04:12:45
【问题描述】:
所以我正在尝试获取以下页面的内容:
http://steamcommunity.com/profiles/76561198009923867/inventory/json/730/2
所以我得到了这个代码:
app.get('/inventory', function(req, res){
//send a web request to http://www.steamcommunity.com/profiles/<NUM>/inventory
var options = {
host: 'www.steamcommunity.com',
port: 80,
path: '/profiles/' + steamIDtoTrade + '/inventory/json/730/2/'
}
http.get(options, function(http_res){
var data = "";
http_res.on("data", function(chunk){
data += chunk;
})
http_res.on("end", function(){
console.log(data);
res.send(data);
})
})
});
但是当我查看我的回复时,我得到了这样的结果:
http://i.imgur.com/IWb6ih8.png
那么我在这里错过了什么?
【问题讨论】: