84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
先需要插件实现功能,提交评论json数据到特定的路径,然后处理数据.
尝试添加钩子到解析请求的动作.
function sync_comment($obj){ test($_POST); } add_action( 'parse_request', 'sync_comment' );
实际上不可行,只能获取GET的数据,POST为空.
GET
POST
不知道是不是跨域安全的问题,对Wordpress不熟悉,比较棘手.
寻求解决方案建议.
小伙看你根骨奇佳,潜力无限,来学PHP伐。
检查发现,请求头没有提交Content-Type: application/x-www-form-urlencoded就不能解析$_POST解决方案改成这样就好
Content-Type: application/x-www-form-urlencoded
$data = json_decode(file_get_contents("php://input"));
检查发现,请求头没有提交
Content-Type: application/x-www-form-urlencoded
就不能解析$_POST解决方案改成这样就好