java 如何使用表达式语言将数据导入文本区域
How to get data into textarea using expression language in java
我有一些数据是通过 textarea 存储的,每当我单击编辑按钮时,我都需要将这些数据检索回 textarea:
<textarea row="5" col="40" name="description"></textarea>
我希望这个文本区域的值在单击编辑按钮时回到同一个文本区域。我用过这样的 EL:
<textarea row="5" col="40" name="description" value="${param.description}"></textarea>
但这表明Undefined attribute name (value)
如何使用 EL(表达式语言)将值赋值到 textarea 中?
您应该将值放在 textarea 标签内:
<textarea row="5" col="40" name="description">${param.description}</textarea>
关注@BalusC 评论,见How to prevent XSS attack in JSP
我有一些数据是通过 textarea 存储的,每当我单击编辑按钮时,我都需要将这些数据检索回 textarea:
<textarea row="5" col="40" name="description"></textarea>
我希望这个文本区域的值在单击编辑按钮时回到同一个文本区域。我用过这样的 EL:
<textarea row="5" col="40" name="description" value="${param.description}"></textarea>
但这表明Undefined attribute name (value)
如何使用 EL(表达式语言)将值赋值到 textarea 中?
您应该将值放在 textarea 标签内:
<textarea row="5" col="40" name="description">${param.description}</textarea>
关注@BalusC 评论,见How to prevent XSS attack in JSP