当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PhantomJS onError()用法及代码示例



当出现 JavaScript 错误时调用 OnError() 方法。 onError 方法的参数是msgstack trace,这是一个数组。

用法

其语法如下:

page.onError = function(msg, trace) {} 

示例

下面的代码展示了使用onError()方法。

var wpage = require('webpage').create(); 
wpage.onError = function(msg, trace) {  
   console.log('CONSOLE Message:' + msg ); 
   console.log(JSON.stringify(trace)); 
}; 
wpage.open('http://localhost/tasks/test.html', function(status) {   
   phantom.exit(); 
});

test.html

<html> 
   <head> 
      <title>Welcome to phantomjs</title> 
   </head> 
   
   <body> 
      <script type = "text/javascript"> 
         window.onload = function(){ 
            console.log(page); 
         } 
      </script> 
      
      <h1>This is a test page</h1> 
   </body>
   
</html>

上述程序生成以下内容output

CONSOLE Message:ReferenceError:Can't find variable:page 
[{"file":"http://localhost/tasks/test.html","line":8,"function":"onload"}] 

相关用法


注:本文由纯净天空筛选整理自 PhantomJS - onError()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。