百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>JS教程> 详解jquery中的get办法
分享文章到:

详解jquery中的get办法

发布时间:01/01 来源:未知 浏览: 关键词:

引荐教程:jQuery教程

预备工作

·Customer类

public class Customer
{
    public int Unid { get; set; }
    public string CustomerName { get; set; }
    public string Memo { get; set; }
    public string Other { get; set; }
}

·效劳端处置(Json_1.ashx)

Customer customer = new Customer { Unid=1,CustomerName="宋江",Memo="天魁星",Other="黑三郎"};
string strJson = Newtonsoft.Json.JsonConvert.SerializeObject(customer);
context.Response.Write(strJson);
 
jQuery.get( url, [data], [callback], [type] )

能过http get恳求数据。其中的callback是$.ajax的一种缩略利用,指在成功加载数据后调取。

(一)ashx文件

Get恳求得到json数据

·Ashx文件不再供给

·js

function GetCustomer_Ashx() {
    $.get(
    "webdata/get_1.ashx",
    {},
    function(data) {
        var tt = "";    
        $.each(data, function(k, v) {
            tt += k + ":" + v + "<br/>";
        })
        $("#pmessage").html(tt);
    },
    "json"
    );
}

其中,参数假如没有,那么也要保存空参数列表;数据格局设定为json

(二)ashx文件,汇合

·ashx文件不再供给,请见我的博客的其它随笔

·js

function GetCustomerList() {
    $.get(
    "webdata/get_1.ashx",
    {},
    function(data) {
        var tt = "";
        $.each(data, function(k, v) {
            $.each(v, function(kk, vv) {
                tt += kk + ":" + vv + "<br/>";
            });
        });
        $("#pmessage").html(tt);
    },
    "json"
    );
}

其中,没有参数,参数供给部分可认为空,也可以供给空列表;数据格局可以省略,写json也行,其它的几个选项也行。

(三)恳求文本文件

这次得到文本内容,不得到json对象。

function GetCustomer_txt() {
    $.get(
    "webdata/get_1.txt",
    function(data) {     
        $("#pmessage").html(data);
    },
    "text"
);
}

这里的数据类型,可以省略。

(四)恳求WebService

http get方式恳求web效劳,默许get关闭。要手动启动。

可以在config文件中增加get支撑:

<webServices>
      <protocols>
        <add name="HttpGet"/>
      </protocols>
</webServices>

[WebMethod]

public string GetCustomer()
    {
        Customer customer = new Customer
{ Unid = 1, CustomerName = "宋江", Memo = "天魁星", Other = "黑三郎" };
        string strJson = Newtonsoft.Json.JsonConvert.SerializeObject(customer);
        return strJson;
}

ScriptMethod 属性标签用于指定用于调取办法的 HTTP 谓词乃至响应的格局。此属性用于指定可从客户端足本调取的办法的信息。使用此属性可以指定可用于调取办法的 HTTP 谓词(GET 或 POST)。它还使您可以指定是要使用 JavaScript 对象符号 (JSON) 还是 XML 对响应停止格局设定。

·UseHttpGet

指定可否要通过使用 HTTP GET 命令调取办法。默许值为 false。

·ResponseFormat

指定将响应序列化为 JSON 还是 XML。默许值为 Json。当办法返回 XmlDocument 或 XmlElement 对象时,ResponseFormat 属性可用于将 XML 指定为返回类型。

·XmlSerializeString

指定可否将所有返回类型(包罗字符串类型)都序列化为 XML。将响应序列化为 JSON 时,将忽略 XmlSerializeString 属性的值。

假如web效劳办法不润饰这个标签,那默许就序列化为json对象。

function GetCustomer_Webservice() {
    $.get(
    "get_1.asmx/GetCustomer",
    function(data) {
        var jsonObject = $.jsonToObject(data.text);
        var tt = '';
        $.each(jsonObject, function(k, v) {
            tt += k + ":" + v + "<br/>";
        });
        $("#pmessage").html(tt);
    },
    "json"
);}

这种例子就举到这个为止。在ajax get恳求web效劳时,留意开通get和谈拜访。

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有152人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板