1,建立服务器后端处理程序
添加“一般处理程序”,如下图
2.编写“Handler2.ashx”代码,如下:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Script.Serialization; namespace WebApplication5 { /// <summary> /// Handler1 的摘要说明 /// </summary> public class Handler1 : IHttpHandler { public void ProcessRequest(HttpContext context) { //采用EF从数据库中提取数据 WeatherDBEntities weatherDbcontext = new WeatherDBEntities(); var dataset = from data in weatherDbcontext.T_Station select new { data.StationName,data.StationPosition,data.Lat,data.Lon }; JavaScriptSerializer tool = new JavaScriptSerializer(); context.Response.ContentType = "text/plain"; //字符串形式 context.Response.Write(tool.Serialize(dataset));//将字符串编码为JSON类型 // //备注,要从javascript中传参数的话,如下代码,data就是传递的参数。而在本文件中,通过context.request("zipcode")来获取 //如context.Response.Write(context.Request.Params["zipcode"]); // $.ajax({ // url: "/api/getWeather",//data: { // zipcode: 97201 //},// success: function( data ) { // $( "#weather-temp" ).html( "<strong>" + data + "</strong> degrees" ); // } //}); } public bool IsReusable { get { return false; } } } }
4.结果如下
本文出自 “独钓寒江雪” 博客,请务必保留此出处http://www.jb51.cc/article/p-ruwqnoor-xu.html
原文链接:https://www.f2er.com/ajax/165222.html