0
var getMatches = function(){
var sait = 'https://www.website.com'
request({ url: sait, jar: true}, function(error, response, html){
if(!error){
var $ = cheerio.load(html)
var count = ($('.TheMatch').length)
for(var i = 2; i< count + 2 ; i++){
var live = ($('.TheMatch:nth-child('+i+') .LiveStatus').text())
var nameMatch = ($('.TheMatch:nth-child('+i+') .MDxEventName').text())
var time = ($('.TheMatch:nth-child('+i+') .DateTime').text().substring(8))
var websiteCount = ($('.TheMatch:nth-child('+i+') .TotalBookies').text())
if((websiteCount >= 25) && (live.length === 0)){
console.log('match ' + nameMatch)
console.log('count Websites ' + websiteCount)
}
}}})}
我想在此網站上進行身份驗證並保存cookie我該怎麼做?並保存餅乾,所以每次我解析不需要登錄?使用節點js使用身份驗證報廢網站
回答更新。 –
我得到這個錯誤,不能找到工作人員http://s9.postimg.org/80ea6tr7j/Screen_Shot_2016_03_15_at_10_03_47_PM.png –
因爲它是從我的項目複製/粘貼。即使我爲您提供了99%的所需,作爲開發人員,您自己也應該修復非常簡單的錯誤。 self.sessionId和worker.sessionId是相同的東西,只需將其更改爲var sessionId; –