gpt4 book ai didi

java - 我如何使用 s :property in JavaScript function

转载 作者:太空宇宙 更新时间:2023-11-04 15:23:05 25 4
gpt4 key购买 nike

在我的 struts2 应用程序中,我有一个 JavaScript 函数来执行取消操作。此方法位于 header 中,仅对我的返回 URL 执行 window.location 操作。由于我们从 struts 2.3.8 版本的 2.0.11 版本进行了迁移,因此它不再起作用。当我查看生成的 HTML 代码时,我们发现无法解释标记 s:property,因为 URL 为空。我没有看到什么不起作用。

在我的 IDE 中:

function cancel() {
if (!isModified || (isModified && askConfirmCancel())) {
window.location.replace('<s:property value="#urlBack"/>');
}
}

Firebug 的结果:

function cancel() {
if (!isModified || (isModified && askConfirmCancel())) {
window.location.replace('');
}
}

在 JSP 文件中:

<tr>
<td height="6%"align="center">
<s:submit cssClass="button" key="common.initDelegate.label" align="center" theme="simple"/>
<s:url id="urlBack" action="myAction" includeParams="none" escapeAmp="false">
<s:param name="period.periodId" value="%{period.periodId}"></s:param>
</s:url>
<input type="button" onclick="javascript:cancel()" value="<s:text name="common.button.cancel"/>"/>
</td>
</tr>

最佳答案

<s:property value="#urlBack"/> -- urlBack 之前需要加“#”吗? 。我们需要的是urlBack Action 类中的属性 public String getUrlBack()方法。并且该变量应该在 Action 返回成功/结果之前初始化。

关于java - 我如何使用 s :property in JavaScript function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20197138/

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