- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 网页自动化
- PhantomJS - 网络监视
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 实例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - onResourceError()
当网页无法上传文件时调用此回调。其参数是错误对象。
错误对象包含以下内容:
Id - 请求的编号。
URL - 调用的 URL。
ErrorCode - 错误代码。
ErrorString - 错误详情
语法
语法如下:
wpage.onResourceError = function(resourceError) {}
示例
以下示例演示了 onResourceError() 方法的使用。
var wpage = require('webpage').create(); wpage.onResourceError = function(error) { console.log(JSON.stringify(error)); } wpage.open('https://127.0.0.1/tasks/prompt1.html', function(status) { });
上述程序生成以下 输出。
{"errorCode":203,"errorString":"Error downloading https://127.0.0.1/tasks/prompt .html - server replied: Not Found","id":1,"status":404,"statusText":"Not Found", "url":"https://127.0.0.1/tasks/prompt1.html"}
phantomjs_webpage_module_events_callbacks.htm
广告