recherche

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

jQuery ajax 怎么处理返回的 json 数据?

要是在php返回一个

echo { name:"yxl", age:4};

在jQuery处理的时候,怎么写呢?是下面这样写吗?

$.get('.php',{:''},F ,'json');    //★★这里我直接写'json' 对吗?

function F(result , success , xhr)
{
    alert( result.name );   //★★这里是这样调用吗?
}


高洛峰高洛峰2959 Il y a quelques jours580

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

  • 三叔

    三叔2016-11-08 11:26:34

    后端返回的是一个json字符串,而不是对象。使用JavaScript原生的JSON.parse方法把json字符串解析为对象,就可以用了。

    répondre
    0
  • Annulerrépondre