我正在研究可以发送什么以及什么不能通过jquery ajax发送,因为它给了我错误的结果。起初我认为这与路径角色有关。但我发现它确实不是。
所以我写了一个Web服务来记录发送的内容和一个发送38个符号的jQuery AJAX代码。但每次,我的网络服务都会以不同的顺序记录不同的符号。我的代码如下。
HTML:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div id="original"></div>
<div id="returnedsybmols"></div>
<div id="returnedunicode"></div>
<script src="Scripts/jquery-2.0.0.min.js"></script>
<script>
$(function () {
var symbols = "! \" # $ % & ' ( ) * + , - . / : ; < = > ? [ \ ] ^ _ ` { | } ~ ! ¢ £ ? \\ | §";
//var unicode ="サイトは有効なHTMLマークアップを使っていません。テキストを貼り付けてください。";
var eachsymbol = symbols.split(' ');
//alert(eachsymbol.length);
for (var i = 0; i < eachsymbol.length; i++) {
}
eachsymbol.forEach(function (t) {
$.ajax({
type: "POST",
url: "jsonstring.asmx/symbols",
data: "{'send':'" + t + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
var returnedText = msg.d;
$("#returnedsysmbols").append($("<p>").text(returnedText) );
},
error: function (e) {
alert("error");
}
});
});
});
</script>
</body>
</html>
ASP:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Net;
using System.IO;
using System.Text;
using System.Xml;
using System.Text.RegularExpressions;
using System.Web.Script.Services;
namespace ASP_NET
{
/// <summary>
/// Summary description for jsonstring
/// </summary>
///
[System.Web.Script.Services.ScriptService]
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class jsonstring : System.Web.Services.WebService
{
[WebMethod]
public string symbols(string send)
{
using (StreamWriter sw = File.AppendText(@"E:\My Documents\programming\exercise\ASP_NET\ASP_NET\writeout\symbols4.txt"))
{
sw.WriteLine(send);
}
return send;
}
[WebMethod]
public string unicode(string send)
{
using (StreamWriter sw = new StreamWriter(@"E:\My Documents\programming\exercise\ASP_NET\ASP_NET\writeout\unicode.txt"))
{
sw.Write(send + " ");
}
return send;
}
}
}
显然\,','不能通过jQuery传递。我尝试使用转义函数,但它将编码我的所有unicode字符。任何解决方案? 你能解释为什么我的网络服务器每次都记录不同数量和不同的字符集吗?
运行case1 “()* +, - 。/:;&lt; =#!%&amp;?&gt; [`^ {!〜?|£§
运行案例2 $()* +, - 。 / :; &LT; #“%!&amp; =&gt; [] _`} | {?!〜¢£§
运行案例3 ! $&amp; %()* - +。 ,/&lt; &GT; ? ^ _}〜! ¢? £§|
运行案例4 $()* +, - 。 / :; &安培; “#&lt;?!&gt; = _ [`| {}〜£|!?¢
答案 0 :(得分:2)
$.ajax
调用是异步的。当同时发出多个请求时,无法保证一个人在另一个之前完成。
所以不,这不是一个错误。
答案 1 :(得分:0)
我刚刚意识到我的web服务不够快,无法处理所有ajax查询。所以它有时不会返回结果。