working with JSON data array from Ajax response?

后端 未结 5 1683
一个人的身影
一个人的身影 2020-12-21 21:26

Is it possible to work with a response from AJAX request in PHP? I am not really a JS dev so i am polling my hair out with this one.

I have sort of hacked this toget

5条回答
  •  悲&欢浪女
    2020-12-21 21:41

    use

    dataType: 'json',
    

    instead

    dataType: 'html',
    

    and then use each to fetch the record from response in success function

提交回复
热议问题