asp classic:request.form数据没有空格

发布于 2025-01-06 14:17:31 字数 666 浏览 1 评论 0原文

我正在使用 jquery 发送发布数据,但是当我在 asp 中检索它时,所有空格都已被删除。

经典 ASP Request.Form 删除空格?

我发现了这个问题,但我'我不确定他所说的 url 编码是什么意思。

这是我的 jquery:

var dataString = 'name='+$("#name").val()+'&email='+$("#email").val()+'&note='+$("#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

没有心的人 2025-01-13 14:17:31

当您使用字符串作为数据时,jQuery 假定您已正确编码数据,但尚未对值进行编码。使用对象代替,以便 jQuery 对值进行编码:

var dataObject = {
  name: $("#name").val(),
  email: $("#email").val(),
  note: $("#note").val()
};

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:

var dataObject = {
  name: $("#name").val(),
  email: $("#email").val(),
  note: $("#note").val()
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文