我只是使用 jquery $.post()
创建一个操作 JSON 数据的简单脚本。
到目前为止,这就是我所拥有的:
DateWebService.asmx
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;
namespace WebApplication2
{
/// <summary>
/// Summary description for DateWebService
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
// 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 DateWebService : System.Web.Services.WebService
{
[WebMethod]
public string GetDateTime()
{
return DateTime.Now.ToString();
}
}
}
Default.aspx的
$.ajax({
type: "POST",
url: "DateWebService.asmx/GetDateTime",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg)
{
alert(msg.d);
}
});
上面的代码正在运行。但我想要做的不是使用$.ajax()
我想使用$.post();
这样的东西:
$.post("DateWebService.asmx/GetDateTime", {}, function(data){
alert(data.d);
}, "json")
.fail(function(){ alert("error"); });
但我得到的是错误信息。
答案 0 :(得分:0)
试试这个,它可能对你有所帮助
$.post("DateWebService.asmx/GetDateTime", {}, function(data){
if (data.success) {
alert(data.d);
}
else
{
//show some error message
}
}, "json")