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