admin管理员组文章数量:1352167
I'm trying to get html page through this node module called Wreck
It should be very easy to get data but I'm unable to get them
'use strict';
var Wreck = require('wreck');
var url = '';
var callback = function(err, response, payload){
Wreck.read(response, null, function(err, body){
//here print out the html page
});
};
Wreck.get(url, callback);
Here above a simple script just a copy from the readme of the developer. according to the documentation body
should return a buffer object but how can I read inside a body object? I have read to use toJSON or toString() but I don't get any result
I'm trying to get html page through this node module called Wreck
It should be very easy to get data but I'm unable to get them
'use strict';
var Wreck = require('wreck');
var url = 'http://www.google.it';
var callback = function(err, response, payload){
Wreck.read(response, null, function(err, body){
//here print out the html page
});
};
Wreck.get(url, callback);
Here above a simple script just a copy from the readme of the developer. according to the documentation body
should return a buffer object but how can I read inside a body object? I have read to use toJSON or toString() but I don't get any result
-
1
Can you show us what exact code you did use in the
read
callback, and what it printed? Did an error happen? – Bergi Commented Aug 29, 2014 at 14:14
1 Answer
Reset to default 10...but I don't get any result
You ARE getting a result, an empty Buffer
, but it's not want you want, probably.
The fact is: you are using the read
method wrong, passing it inside a callback to the get
method. The methods get
, post
, put
and delete
already call read
internaly and return the readable Buffer
for you, in a callback. Take a look at the get
doc:
get(uri, [options], callback)
Convenience method for GET operations.
- uri - The URI of the requested resource.
- options - Optional config object containing settings for both request and read operations.
- callback - The callback function using the signature function (err, response, payload) where:
- err - Any error that may have occurred during handling of the request.
- response - The HTTP Ining Message object, which is also a readable stream.
- payload - The payload in the form of a Buffer or (optionally) parsed JavaScript object (JSON).
So, the use of the get
method is pretty straightforward (using your own example):
var callback = function(err, response, payload){
console.log(payload.toString()); // converting the buffer to a string and logging
};
Wreck.get(url, callback);
本文标签: javascriptRead buffer object in nodejsStack Overflow
版权声明:本文标题:javascript - Read buffer object in node.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743891775a2557052.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论