我有以下错误:
Error: uncaught OPA exception {OpaRPC_Server: {timeout: {client: {client: $"j98soqx7hbavgq2scg915j7mlkctdeop"$; page: $1
042254815$}; fun_id: $"_v0_get_value_stdlib.core.xhtml"$}}}
使用下面的简单代码:
function start()
{
content = <textarea style="width:30%;" rows=1 id=#text > text </textarea> <+>
<div id=#copy></div>
Scheduler.timer(3000, function() {#copy =+ Dom.get_value(#text)})
content
}
Server.start(
Server.http,
{ page:start,
title:"bug timer"
}
)
当我关闭运行应用程序的选项卡时出现错误。尽管选项卡已关闭,但计时器似乎仍在继续工作。
我怎样才能阻止它?
谢谢,
开曼