showResult 是 SSJS 中的全局函数名称吗?
我在脚本库中使用 showResult 作为函数名称,当调用它时,出现错误 [TypeError] 对“object[JavaScript Object]”类型的对象调用方法 showResult(string) 时出错 发生。如果该函数定义在 xpage 中或重命名为 showResult2,则一切正常。
I used showResult as a function name in a script library and when it's called, an error
[TypeError] Error calling method showResult(string) on an object of type 'object[JavaScript Object]'
occurred. If the function is defined in a xpage or renamed as showResult2, everything is OK.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不需要。脚本编辑器中的“参考”选项卡允许您查看所有全局函数。如果 showResult 是一个函数,则它在其他地方定义(例如在脚本库中)。
No. The Reference tab in the Script Editor allows you to see all the global functions. If showResult is a function, it's defined elsewhere (e.g. in a script library).