recherche

Maison  >  Questions et réponses  >  le corps du texte

jQuery $.get 的参数4怎么写呢?

jQuery $.get 的参数4怎么写呢?
是直接写类型的字符串吗??
像下面:

$.get('http://123.php' , {name:'wxm'} , myfunction , 'json');
$.get('http://123.php' , {name:'wxm'} , myfunction , 'XML');

谁给我举个例子?


高洛峰高洛峰2958 Il y a quelques jours746

répondre à tous(1)je répondrai

  • 三叔

    三叔2016-11-08 12:48:14

    $.get(url, [data], [callback], [dataType]);第4个参数是服务器返回的数据类型,直接写类型名,比如下面两种写法是等价的.

    $.get(
        "http://www.example.com/json.php",
        {name:"ele", pass:"123"},
        function(data){ console.log(data); },
        "json"
    );
    $.ajax({
        type: "GET",
        url: "http://www.example.com/json.php",
        data: {name:"ele", pass:"123"}, //可选参数
        dataType: "json",
        success: function(data){ console.log(data); } //可选参数
    });
    
    //这时就算json.php输出时声明为纯文本(text/plain)而不是json(application/json),
    //回调函数里的data也是一个object.
    json.php
    header('Content-Type: text/plain; charset=utf-8');
    echo json_encode($_GET);


    répondre
    0
  • Annulerrépondre