1
I M想這一點,但得到一些詞法分析錯誤這是什麼意思由於詞法分析錯誤,無法分析EL表達式?
enter code here
<td><a href="${edit}"><c:out value="${fn:replace(record.question,'IMAGE','<img src="${questionPath}"/>'/></a></td>
I M想這一點,但得到一些詞法分析錯誤這是什麼意思由於詞法分析錯誤,無法分析EL表達式?
enter code here
<td><a href="${edit}"><c:out value="${fn:replace(record.question,'IMAGE','<img src="${questionPath}"/>'/></a></td>
不能使用$ {}當你已經是EL表達式內。
此外,我想這個的目標是生成一個<img>
HTML標記。 Anc c:out正好用於轉義HTML特殊字符,所以您不應將其嵌入到c:out標記中。
這應該做你想要什麼:
${fn:replace(record.question,
'IMAGE',
'<img src="' + fn:escapeXml(questionPath) + '"/>') }