alsotang / node-lessons

:closed_book:《Node.js 包教不包会》 by alsotang
16.54k stars 4.7k forks source link

Lesson 3 里面 superagent 的使用为什么这样写? #36

Closed hugojing closed 9 years ago

hugojing commented 9 years ago
// 用 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 的文档后比较困惑,求指点,谢谢。

alsotang commented 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.

hugojing commented 9 years ago

感谢。