asp classic:request.form数据没有空格
我正在使用 jquery 发送发布数据,但是当我在 asp 中检索它时,所有空格都已被删除。
我发现了这个问题,但我'我不确定他所说的 url 编码是什么意思。
这是我的 jquery:
var dataString = 'name='+$("#name").val()+'&email='+$("#email").val()+'¬e='+$("#note").val();
$.ajax({
type: "POST",
url: "asp_mail.asp",
data: dataString,
success: function() {
$("p#mail-prompt").html("The message was successfully sent.");
$("div#the-prompt").slideDown();
}
});
I'm sending post data using jquery, but when I retrieve it in asp all the spaces have been removed.
Classic ASP Request.Form removes spaces?
I found that question, but I'm not sure what he meant by url encode.
Here is my jquery:
var dataString = 'name='+$("#name").val()+'&email='+$("#email").val()+'¬e='+$("#note").val();
$.ajax({
type: "POST",
url: "asp_mail.asp",
data: dataString,
success: function() {
$("p#mail-prompt").html("The message was successfully sent.");
$("div#the-prompt").slideDown();
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用字符串作为数据时,jQuery 假定您已正确编码数据,但尚未对值进行编码。使用对象代替,以便 jQuery 对值进行编码:
When you use a string as data, jQuery assumes that you have encoded the data correctly, but you haven't encoded the values. Use an object instead, so that jQuery encodes the values: