0

我正在使用水星编辑器(非导轨)开发内容管理系统。但问题是我不知道如何保存从水银编辑器提供的 JSON 字符串。

这是编辑器提供的 JSON 字符串。

{
"get_title": {
"type": "simple",
"data": {},
"value": "skdhfzsd"
},
"title": {
"type": "simple",
"data": {},
"value": "This is a test page"
},
"content": {
"type": "full",
"data": {},
"value": "<p>What is this kind of page ?</p><p>Well this is my cool test page to try out different stuff.</p><p><a href=\"http://www.domeinz.nl\" target=\"_blank\">Woot</a></p><p><iframe style=\"width: 560px; height: 349px;\" src=\"http://www.youtube.com/embed/ixifxQ_MDu4?wmode=transparent\" frameborder=\"0\" allowfullscreen=\"true\"></iframe><br></p><p><iframe style=\"width: 400px; height: 225px;\" src=\"http://player.vimeo.com/video/22193086?title=1&byline=1&portrait=0&color=ffffff\" frameborder=\"0\"></iframe><br></p><p>☃ ©&lt;/p><p><br></p>",
"snippets": {}
}
}

问题是我不知道如何将其保存到我的 save.php 文件以及如何获取请求。

打招呼。

4

1 回答 1

0

您应该将此 json 字符串发送到 PHP 文件(它基本上是一个数组)。

然后 PHP 文件可以处理信息并将其插入到数据库中。

不要害怕如何处理结果。尝试执行 print_r($_GET) 或 print_r($_POST),您将在 php 文件中看到编辑器发送给您的确切信息。

应该使 PHP 文件以与任何其他形式发送信息的方式完全相同的方式处理信息,这就是这个编辑器的美妙之处。

于 2013-04-07T23:23:16.670 回答