在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在ts爬虫代码练习时,用cheerio来获取网页中数据时 const viewCountTemp = $(e).find('.postDesc').eq(idx).find('.post-view-count').text() // "阅读(5)" infoItem.viewCount = parseInt(viewCountTemp.match(/.*\((.*)\)/)[1]) // 5 => "阅读(5)".match(/.*\((.*)\)/) => ["阅读(5)", "5", index: 0, input: "阅读(5)", groups: undefined]
这段代码是报错的。 viewCountTemp.match(/.*\((.*)\)/) infoItem.viewCount =parseInt(viewCountTemp.match(/.*\((.*)\)/)![1])
|
请发表评论