获取ajax传递给Web服务并打印它的值

获取ajax传递给Web服务并打印它的值

问题描述:

I have a simple web service where it receives a JSON object from a mobile app and adds that data in to a database. For testing i have created a separate web page that consists of a form and send that data using ajax to my web service.

My problem is i want to check how the data is passed to the web service and since the call is ajax i can't print out the JSON object from the php script. The data is not inserting to the database and i not sure how to debug this.

What can i do to see the JSON objects passed to the web service from that php script? Please help..

我有一个简单的Web服务,它从移动应用程序接收JSON对象并将该数据添加到数据库中 。 为了进行测试,我创建了一个单独的网页,其中包含一个表单,并使用ajax将该数据发送到我的Web服务。 p>

我的问题是我想检查数据如何传递给 Web服务,因为调用是ajax我无法从php脚本打印出JSON对象。 数据没有插入数据库,我不知道如何调试它。 p>

如何才能看到从该php脚本传递给Web服务的JSON对象? 请帮忙...... p> div>

You can see exactly what you're sending to the web service with Fiddler. Here's a link: http://www.telerik.com/fiddler

By other hand, if your data isn't inserted into the DB, you should post some code to check it.

Regards!

If you only want to see the JSON object, you can log the object to a file using

error_log($_POST['json_object'], 3, "log.txt");