alsotang / node-lessons

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

lesson3 项目:简单爬虫输出包括主题的作者 #153

Open WangEn opened 6 years ago

WangEn commented 6 years ago
      $('#topic_list .cell').each(function (idx, element) {
        var $element = $(element);
        items.push({
          title: $element.find('.topic_title').attr('title'),
          href: $element.find('.topic_title').attr('href'),
          author: $element.find('.user_avatar img').attr('title')
        });
      });      
alsotang commented 6 years ago

可能并发连接数问题?试着降低并发调试一下

muzi-8 notifications@github.com 于2018年8月28日周二 下午3:24写道:

为什么按照作者提供给的代码,lesson3没有输出结果?谢谢

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/alsotang/node-lessons/issues/153#issuecomment-416478880, or mute the thread https://github.com/notifications/unsubscribe-auth/ABGB72NxEg-Vrc_LTZyFaCpEbEGqiNLdks5uVPBAgaJpZM4SQYy8 .

-- GitHub: https://github.com/alsotang