javascript - How to access pagination in asp website using Node.js? -


i going grab data website build asp. i'm having problem it's pagination, don't know how next page. here have tried code

var url = 'https://www.muvmarketplace.com/portal/cardetail.aspx?bid_date=20160525#this';     siterequest.post(url, {form:{pc$pageno:3}} , function(error, response, body){        if(!error && response.statuscode == 200){           var $ = cheerio.load(body);           var links = [];           $('table.sortable > tr:not(".mtbgreenbg")').each(function(){              links.push('https://www.muvmarketplace.com/portal/'+$(this).find('td').eq(12).find('img').attr('onclick')              .replace(/'/g, '')              .replace(/,/g, '')              .replace(/[()]/g, '')              .replace(/window.open/g, '')              .replace(/resizable=yesscrollbars=yes/g,''));           });           console.log(links);        }     }); 

but did not work. have meet website before? pls me.


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -