gpt4 book ai didi

java - EL 内表格 :input causes unclosed tag error

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

当我尝试做类似 <c:if ...>...</c:if> 的事情时里面 form:input我在控制台中收到错误 form:input尚未关闭。

有谁知道为什么会发生这种情况,以及最干净的解决方案? (可能是 set var 然后是 ${result of c:if} )

最佳答案

您不能使用<c:if>这样:

<form:input type="text" ... <c:if test="${empty bla}">disabled="disabled"</c:if>/>

在你的情况下,你必须写:

<form:input type="text" ... disabled="${empty bla}" />

(注意Spring 3.0.1修复的相关bug https://jira.springframework.org/browse/SPR-6790)

 

关于java - EL 内表格 :input causes unclosed tag error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4302581/

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