0

当ajax post.can任何帮助我如下

未声明纯文本文档的字符编码。如果文档包含 US-ASCII 范围之外的字符,则文档将在某些浏览器配置中呈现乱码。文件的字符编码需要在传输协议中声明或文件需要使用字节顺序标记作为编码签名。

谢谢,拉克什

4

2 回答 2

0

尝试以这种方式使用 ajax:

  data = {}
  data['a'] = "aaaa";
  data['b'] = "bbbbbbbb"; 

  $.ajax({
      url: "url",
      data: data,
      type: 'post',
      success: function(result){
          //result is the output data sent from server
      },error: function(err){
          // This function will be called if error
      }  

  });
于 2012-11-01T10:19:38.470 回答
0

我认为您需要在 ajax 发布配置中设置您要求的 contentType。

于 2012-11-01T10:12:14.073 回答