Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有简单的extjs(2.0)表单,它包含动态生成的文本字段。我将表单参数发送给servletusing ajax request。如果我special characters在文本字段中输入任何内容,则文本字段值将以URL escape codes. 例如在 servlet&中用 表示。%26
extjs(2.0)
servlet
ajax request
special characters
URL escape codes
&
%26
如果我使用表单提交,而不是使用 ajax 请求,它正在工作。请帮我解决这个问题。
如果要将参数发送到“GET”方法,请使用 url 编码并发送。
尝试查看encodeURI()和decodeURI()。
如果您使用的是“POST”方法,那么只有正常发送才有效。
在发送之前将值编码为 JSON,并在服务器上对其进行解码。