上一主题: RemoteTarget.hasCompleted 方法下一主题: RemoteTarget.output 方法


RemoteTarget.onError 方法

事件处理程序是一种可选函数,当发生特定事件时,可以在用户脚本中实现并由 AutoShell 进行调用。 如果存在事件处理程序,则在远程执行期间发生错误时调用该事件处理程序。

该方法具有以下语法:

onError(e)

注意:AutoShell 忽略事件处理程序返回值。

示例

为 RemoteTarget 指定错误处理程序:

rt = new RemoteTarget("ascli1");
// 分配事件处理程序
rt.onError = function(e){qout("Error occured, code=", e);};
run-remote "2*2" on rt

另请参阅:

RemoteTarget.errorOccurred 方法

RemoteTarget.getError 方法