将 jqote2 与 struts2 taglib 一起使用时出现问题

发布于 2024-09-07 13:46:33 字数 966 浏览 0 评论 0 原文

如果我尝试将jqote2变量声明添加到struts2 tablig中,例如名称属性。对于“<”和“>”字符,struts2 会将它们转义为 <和>到客户端浏览器,并使jqote2无法找到struts2标签属性中定义的变量,如下所示:

<script type="text/html" id="priceRowTemplate">  
    <![CDATA[
      <tr>
        <td>
          <s:select name="alist[<%= this.index%>].field1"
            list="@xxx.AEnumObject@values()"
            listKey="toString()" listValue="caption" />
        </td>
        <td><input value="<%= this.priceOfAdult%>"/></td>
        <td><input value="<%= this.priceOfKid%>"/></td>
        <td>X</td>
      </tr>
  ]]>

即使我使用 ,结果还是一样。 这是对客户端的字符串响应

<select name="alist[&lt;%= this.index%&gt;].field1">..</select>

有人知道如何告诉 Struts2 不要转义 HTML 标记吗?多谢。

If I try to add jqote2 variable declaration into struts2 tablig, such as name attribute. For "<" and ">" character, struts2 will escape them into < and > to client browser, and make jqote2 unable to locate variable defined in struts2 tag attribute, example below:

<script type="text/html" id="priceRowTemplate">  
    <![CDATA[
      <tr>
        <td>
          <s:select name="alist[<%= this.index%>].field1"
            list="@xxx.AEnumObject@values()"
            listKey="toString()" listValue="caption" />
        </td>
        <td><input value="<%= this.priceOfAdult%>"/></td>
        <td><input value="<%= this.priceOfKid%>"/></td>
        <td>X</td>
      </tr>
  ]]>

even I use <s:select name="%{'alist[<%= this.index%>].field1'}"... , the result is still the same.
Here is the string response to client

<select name="alist[<%= this.index%>].field1">..</select>

Anyone knows how to tell Struts2 not to escape HTML tag? thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城之時有危險 2024-09-14 13:46:33

虽然我从未使用过 Struts,但我在 google 上搜索了一下,发现 http:// /struts.apache.org/2.x/docs/property.html。这可能适合你的情况。

无论如何,如果你无法让它工作,我可以重写 jQote2 让你不依赖于 < > 样式标签。

给我留言。
埃夫克斯

Though I've never used Struts I've googled a bit and found http://struts.apache.org/2.x/docs/property.html. This might work in your case.

Anyways, if you fail to get it to work, I could rewrite jQote2 for you to not depend on < > style tags.

Drop me a note.
aefxx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文