服务器收到HTTP请求上发送的数据时,其结构正在改变

时间:2018-09-01 09:47:07

标签: httprequest

我正在尝试通过PHP将对象保存到MySQL数据库,并且正在从Android将数据发送到PHP。

我从Android应用程序发送的数据的结构是

{  
"nodes":[  
  {  
     "content":[""],
     "contentStyles":[],
     "textSettings":{  
        "textColor":"#000000"
     },
     "type":"INPUT"
  },
  {  
     "content":[  
        "\u003cp dir\u003d\"ltr\"\u003eYou can start typing here by deleting the this dummy data\u003c/p\u003e\n"
     ],
     "contentStyles":[],
     "textSettings":{  
        "textColor":"#000000"
     },
     "type":"INPUT"
  }
  ] 
}

但是当我从php保存数据时,它正在更改为以下格式

{"nodes":
  [ 
     { "content":[""],
       "contentStyles":[],
       "textSettings": {"textColor":"#000000"},
       "type":"INPUT"
     },
     { "content": ["u003cp diru003d"ltr"u003eYou can start typing here 
                   by deleting the this dummy data.003c/pu003e
                  "],
       "contentStyles":[],
       "textSettings":{"textColor":"#000000"},
       "type":"INPUT"
     }
]
}

我想以相同的格式保存数据,而不更改结构中的任何内容。我尝试了几种方法,但无法解决该问题。

0 个答案:

没有答案