我正在尝试通过单击具有编辑框值+其自身值的按钮来更新计算字段值。
写在按钮上的代码:这里我将编辑框的值放在范围变量中,并使编辑框为空白。comment_te 是编辑框的名称
requestScope.put("commentValue", getComponent("comments_te").getValue);
getComponent("comments_te").setValue("");
为计算域的值编写的代码:comments 是计算域的名称
getComponent("comments").getValue + "\n" + requestScope.get("commentValue")
但我得到的输出是:0 com.ibm.xsp.component.xp.XspInputText@65426542
请帮我解决一下这个。