基本简单的Asp.net + jQuery + JSON示例

时间:2011-04-22 13:54:57

标签: c# jquery asp.net ajax json

我正在尝试学习如何从Javascript / jQuery对服务器进行简单的调用。我一直在努力学习,无法通过这些简单的步骤找到教程。

我想使用两个参数(DateTime和String)向服务器发送消息并返回DateTime。我想通过JSON做到这一点。

  • 服务器中的代码如何显示(仅限结构)?
  • 我在服务器端应该做些什么特别的事情吗?安全性怎么样?
  • 我如何在jQuery中实现调用?
  • 我将如何处理结果?

我对代码结构最感兴趣。

更新

我发现下面的答案很棒,让我开始。但是,我最近偶然发现Full ASP.NET, LINQ, jQuery, JSON, Ajax Tutorial。这是一个非常棒的,非常有教育意义的一步一步,我想与将来遇到这个问题的其他人分享。

3 个答案:

答案 0 :(得分:25)

有几种方法可以做到这一点;这将作为一个例子。

你可以为你的jQuery代码写这样的东西:

urlToHandler = 'handler.ashx';
jsonData = '{ "dateStamp":"2010/01/01", "stringParam": "hello" }';
$.ajax({
                url: urlToHandler,
                data: jsonData,
                dataType: 'json',
                type: 'POST',
                contentType: 'application/json',
                success: function(data) {                        
                    setAutocompleteData(data.responseDateTime);
                },
                error: function(data, status, jqXHR) {                        
                    alert('There was an error.');
                }
            }); // end $.ajax

接下来,您需要在ASP.net项目中创建“通用处理程序”。在通用处理程序中,使用Request.Form读取作为json传入的值。通用处理程序的代码可能如下所示:

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class handler : IHttpHandler , System.Web.SessionState.IReadOnlySessionState
{
    public void ProcessRequest(HttpContext context)
    {
        context.Response.ContentType = "application/json";

        DateTime dateStamp = DateTime.Parse((string)Request.Form["dateStamp"]);
        string stringParam = (string)Request.Form["stringParam"];

        // Your logic here

        string json = "{ \"responseDateTime\": \"hello hello there!\" }";
        context.Response.Write(json);    
    }

看看这是如何工作的。它会让你开始!

更新:我在CodeReview StackExchange上发布了此代码:https://codereview.stackexchange.com/questions/3208/basic-simple-asp-net-jquery-json-example

答案 1 :(得分:1)

如果你使用的是jQuery,你可以通过GET或POST来实现。

$.get ('<url to the service>',
       { dateParam: date, stringParam: 'teststring' },
       function(data) {
          // your JSON is in data
       }
);

$.post ('<url to the service>',
       { dateParam: date, stringParam: 'teststring' },
       function(data) {
          // your JSON is in data
       }
);

请注意,(例如,dateParam,stringParam)中的参数名称必须与服务方法所期望的参数名称相同。此外,您的服务需要将结果格式化为JSON,回调中的数据参数将包含您的服务发回的任何内容(例如text,xml,json等)。

请参阅$ .ajax的jQuery文档,$ .get,$。postt:http://api.jquery.com/jQuery.ajax/http://api.jquery.com/jQuery.get/http://api.jquery.com/jQuery.post/

答案 2 :(得分:1)

此处使用jquery ajax调用的示例代码和服务器端webmethod上的示例代码返回jSon格式数据。 Jquery:

$(‘#myButton’).on(‘click’,function(){
    var aData= [];
     aData[0] = “2010”; 
     aData[0]=””    
     var jsonData = JSON.stringify({ aData:aData});
       $.ajax({
                type: "POST",
                url: "Ajax_function/myfunction.asmx/getListOfCars",  //getListOfCars is my webmethod 
                data: jsonData,
                contentType: "application/json; charset=utf-8",
                dataType: "json", // dataType is json format
                success: OnSuccess,
                error: OnErrorCall
            });

function OnSuccess(response.d)) {
console.log(response.d)
}
function OnErrorCall(response)) { console.log(error); }
});

Codebehind:这里有一个webmethod,它返回json格式的数据,即汽车列表

[webmethod]
public List<Cars> getListOfCars(list<string> aData) 
{
    SqlDataReader dr;
    List<Cars> carList = new List<Cars>();

         using (SqlConnection con = new SqlConnection(cn.ConnectionString))
         {
            using (SqlCommand cmd = new SqlCommand())
            {
               cmd.CommandText = "spGetCars";
               cmd.CommandType = CommandType.StoredProcedure;
               cmd.Connection = con;
               cmd.Parameters.AddWithValue("@makeYear", aData[0]);
               con.Open();
               dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
               if (dr.HasRows)
               {
                  while (dr.Read())
                   {    
                       string carname=dr[“carName”].toString();
           string carrating=dr[“carRating”].toString();
            string makingyear=dr[“carYear”].toString();
           carList .Add(new Cars{carName=carname,carRating=carrating,carYear=makingyear}); 
        }
                }
            }
          }
        return carList 
        }

//创建了一个类

Public class Cars {
public string carName;
public string carRating;
public string carYear;
}

博客文章: