gpt4 book ai didi

lotus-notes - xpages 中的计算字段值

转载 作者:行者123 更新时间:2023-12-01 15:20:21 25 4
gpt4 key购买 nike

我正在尝试通过单击具有编辑框值 + 其自身值的按钮来更新计算字段值。

写在按钮上的代码:这里我将编辑框的值放在范围变量中,并将编辑框设为空白。 comment_te 为编辑框名称

requestScope.put("commentValue", getComponent("comments_te").getValue);
getComponent("comments_te").setValue("");

为计算域的值编写的代码:注释是计算域的名称

getComponent("comments").getValue + "\n" + requestScope.get("commentValue")

但我得到的输出是:0 com.ibm.xsp.component.xp.XspInputText@65426542

请帮我解决这个问题。

最佳答案

您在调用 getValue() 时缺少括号。通过省略这些,您将返回一个指向组件的 getValue 方法的指针,而不是调用该方法的结果。将对 getValue 的每个引用更改为 getValue(),您将得到不同的结果。

关于lotus-notes - xpages 中的计算字段值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10099137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com