下载网页,或者监控的工具
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载网页,或者监控的工具相关的知识,希望对你有一定的参考价值。
pmui:https://github.com/fouber/pmui
An UI wrapper of page-monitor, to show webpage history captures and diff them.
page-monitor: https://github.com/fouber/page-monitor
监视页面变化
都来源于这个phantomjs http://phantomjs.org/download.html
用法看文档,可以抓取js
以前写的一个下载页面的例子:
var page = require(‘webpage‘).create(); page.open(‘http://yoursite.com/index.php‘, function (status) { //Page is loaded! if (status !== ‘success‘) { console.log(‘‘); } else { console.log(page.content); } phantom.exit(); });
写成bat文件,另存为本地文件
@echo off echo downloading... d: cd D:\myworkphantomjs.exe download.js > index.html echo write file success
跟着程序再进行分析
以上是关于下载网页,或者监控的工具的主要内容,如果未能解决你的问题,请参考以下文章