Tôi chỉ sử dụng trường hợp thứ hai:
Đầu tiên:lấy thông tin được lưu trữ trong biến globalInfo
var globalInfo;
casper.thenOpen("www.targetpage.cl/valuableInfo", function() {
globalInfo = this.evaluate(function(){
var domInfo = {};
domInfo.title = "this is the info";
domInfo.body = "scrap in the dom for info";
return domInfo;
});
});
Thứ hai:truy cập một trang để lưu trữ dữ liệu đã chụp
casper.then(function(){
casper.thenOpen("www.mipage.com/saveIntheDBonPost.php", {
method: 'post',
data:{
'title': ''+globalInfo.title,
'body': ''+globalInfo.body
}
});
});
www.mipage.com/saveIntheDBonPost.php
lấy dữ liệu trong $_POST
và lưu trữ nó vào một DB.