Retrieve JSON POST data in CodeIgniter

后端 未结 5 984
独厮守ぢ
独厮守ぢ 2020-11-28 13:03

I have been trying to retrieve JSON data from my php file.Its giving me a hard time.This is my code

Code in my VIEW:

var productDetails = {\'id\':ISB         


        
5条回答
  •  温柔的废话
    2020-11-28 13:32

    I had the same problem but I found the solution.

    This is the Json that I am sending [{"name":"JOSE ANGEL", "lastname":"Ramirez"}]

    $data = json_decode(file_get_contents('php://input'), true);
    echo json_encode($data);
    

    This code was tested and the result is [{"name":"JOSE ANGEL","lastname":"Ramirez"}]

提交回复
热议问题