ColdFusion HTML 引用格式中断
ColdFusion HTML Form breaking on quotes
奇怪的是,我有一个不会传递双引号的表单?
例如:
10 and single ' this" And " Another
在输入表单中停止于:
10 and single ' this
为什么不保留双引号? “
我的表单类型为:enctype="application/x-www-form-urlencoded"
我有其他表格可以用引号引起来。
这里发生的是文本中的双引号 10 and single ' this" And " Another
打破了输入元素。
带有 "
的文本将提前结束 value
属性。
例如<input value="10 and single ' this" And " Another">
要克服这个问题,您需要用户
<input value="#encodeForHTMLAttribute(formValue)#">
奇怪的是,我有一个不会传递双引号的表单?
例如:
10 and single ' this" And " Another
在输入表单中停止于:
10 and single ' this
为什么不保留双引号? “
我的表单类型为:enctype="application/x-www-form-urlencoded"
我有其他表格可以用引号引起来。
这里发生的是文本中的双引号 10 and single ' this" And " Another
打破了输入元素。
带有 "
的文本将提前结束 value
属性。
例如<input value="10 and single ' this" And " Another">
要克服这个问题,您需要用户
<input value="#encodeForHTMLAttribute(formValue)#">