0

我正在调查什么可以发送,什么不能通过 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 " ( ) * + , - . / : ; < = # ! % & ? > [ ` ^ { ! ~ ? | £ §

运行案例 2 $ ( ) * + , - 。/ : ; < # " % ! & = > [ ] _ ` } | { ? ! ~ ¢ £ §

运行案例3!$ & % ( ) * - + 。, / < > ? ^_}~!¢ ? £ § |

运行案例 4 $ ( ) * + , - 。/ : ; & " # < ? ! > = _ [ ` | { } ~ £ | ! ? ¢

4

2 回答 2

2

$.ajax调用是异步的。当同时触发多个请求时,不能保证一个会按顺序先于另一个完成。

所以不,这不是一个错误。

于 2013-05-01T06:16:43.423 回答
0

我刚刚意识到我的网络服务不够快,无法处理所有 ajax 查询。所以它有时不会返回结果。

于 2013-05-01T06:58:30.733 回答