从javascript警告json对象

时间:2017-11-17 10:43:41

标签: php jquery ajax

enter image description here

 success: function(response){
        var datos = JSON.parse(response);
        //alert(response);
        alert(datos.notificaciones_data[0].ID_Notificacion);
      },  

图片为alert(response)alert(datos.notificaciones_data[0].ID_Notificacion)我什么都没得到,我不明白

1 个答案:

答案 0 :(得分:0)

你应该给:

alert(response.notificaciones_data.ID_Notificacion);