Closed hugojing closed 9 years ago
这个地方的名字随便取。 我用 sres 只是为了不与外层的 res 变量冲突
2015-05-25 13:51 GMT+08:00 Hugo notifications@github.com:
// 用 superagent 去抓取 https://cnodejs.org/ 的内容 superagent.get('https://cnodejs.org/') .end(function (err, sres) { // 常规的错误处理 if (err) { return next(err); } // sres.text 里面存储着网页的 html 内容,
为什么 .end(function (err, sres))用 sres 而不是 res ? 小白一枚,看了 superagent 的文档后比较困惑,求指点,谢谢。
— Reply to this email directly or view it on GitHub https://github.com/alsotang/node-lessons/issues/36.
感谢。
为什么
.end(function (err, sres))
用sres
而不是res
? 小白一枚,看了 superagent 的文档后比较困惑,求指点,谢谢。