2016-12-23 72 views
2

我在抓取r/theonion並將標題寫入文本文件onion.txt。之後,我打算把這些標題寫入文本文件nottheonion.txt。我成功寫入onion.txt,但不寫入notononion.txt。NodeJS:用承諾修復兩個URL

var onion_url = "https://www.reddit.com/r/theonion"; 
var not_onion_url = "https://www.reddit.com/r/nottheonion"; 

var promise = new Promise(function(resolve, reject) { 

    request(onion_url, function(error, response, html) { 
     if (error) { 
      console.log("Error: " + error); 
     } 

     var $ = cheerio.load(html); 

     $("div#siteTable > div.link").each(function(idx) { 
      var title = $(this).find('p.title > a.title').text().trim(); 
      console.log(title); 

      fs.appendFile('onion.txt', title + '\n'); 
     }); 
     }); 
    }); 

promise.then(function(result) { 
    request(not_onion_url, function(error, response, html) { 
     if (error) { 
      console.log("Error: " + error); 
     } 

     var $ = cheerio.load(html); 

     $("div#siteTable > div.link").each(function(idx) { 
      var title = $(this).find('p.title > a.title').te . xt().trim(); 
      console.log(title); 

      fs.appendFile('not_onion.txt', title + '\n'); 
     }); 
    }); 
}, function(err) { 
    console.log("Error with scraping r/nottheonion"); 
}); 
+0

*但not notononion.txt *,你必須得到一些錯誤?你試過調試它嗎? – Mritunjay

+2

你沒有調用'promie'的'resolve'。 –

回答

2

使用request-promisefs-promise。如果你想使用的承諾,並使用功能不重複自己,以簡化你的代碼。

var rp = require('request-promise'); 
var fsp = require('fs-promise'); 

var onion_url = "https://www.reddit.com/r/theonion"; 
var not_onion_url = "https://www.reddit.com/r/nottheonion"; 

function parse(html) { 
    var result = ''; 
    var $ = cheerio.load(html); 
    $("div#siteTable > div.link").each(function(idx) { 
     var title = $(this).find('p.title > a.title').text().trim(); 
     console.log(title); 
     result += title + '\n'; 
    }); 
    return result; 
} 

var append = file => content => fsp.appendFile(file, content); 

rp(onion_url) 
    .then(parse) 
    .then(append('onion.txt')) 
    .then(() => console.log('Success')) 
    .catch(err => console.log('Error:', err)); 

rp(not_onion_url) 
    .then(parse) 
    .then(append('not_onion.txt')) 
    .then(() => console.log('Success')) 
    .catch(err => console.log('Error:', err)); 

這沒有測試。

+1

不錯........ :) – Alnitak