我将字符串化的
JSON对象发送到wordpress操作
原文链接:https://www.f2er.com/php/240131.htmlconsole.log( JSON.stringify(alloptions) ); $.ajax({ type: "post",dataType: "json",url: ajaxurl,processData: false,data: { 'action': 'create_preset','preset': JSON.stringify(alloptions) },success: function( response ) { console.log( response ); } });
在通过ajax发送之前,字符串化对象的控制台日志就是这个
所以字符串被正确处理,
但在另一方面,它出现了斜线
function _create_preset(){ if(!is_admin() && !isset($_POST['preset'])) return; print_r($_POST['preset']); } add_action("wp_ajax_create_preset","_create_preset");
给
{\"get_presets\":\"eedewd\",\"site_width\":\"1400px\",\"layout_type\":...
我知道我可以使用
stripslashes( $_POST['preset'] )
清理它,但这是我想避免的.我需要将JSON字符串发送到ajax之前的动作,而不是斜杠.
任何帮助表示赞赏!
和魔法引号没有
*更新和解决方案
杰西钉了它,WP引起了麻烦.
由于wp_unslash()正在5.0中修复此问题
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/172
我把它添加到我的代码中
global $wp_version; $new_preset_options = $_POST['preset']; if ( version_compare( $wp_version,'5.0','<' ) ) { $new_preset_content = wp_unslash( $new_preset_options ); }else{ $new_preset_content = $new_preset_options ; }