我目前正在开发一个需要WordPress网站和简单REST api的项目。我发现WordPress有自己的REST api,并决定扩展其功能以满足我的需求。我需要做的就是为GET和POST请求提供端点,这些端点从/向与WordPress没有直接关系的表(但在同一个数据库中)检索/插入数据。我成功地实现了所有GET请求,但是,我正努力让POST工作 我已经定义了这个路由寄存器:
register_rest_route('api/v1', 'create-player/', array(
'methods' => 'POST',
'callback' => 'create_player',
));
客户端通过ajax调用发送请求,该调用有望从上面的路由到达端点。这是ajax:
$.ajax({
method: "POST",
url: '/wp-json/api/v1/create-player/',
data : JSON.stringify(data),
contentType: 'applcation/json',
beforeSend: function (xhr){
xhr.setRequestHeader("X-WP-None", locData.nonce);
console.log('beforeSend');
},
success: function(response){
console.log("success" + response);
},
fail: function (response){
console.log("fail" + response);
}
});
我不确定如何从REST api构建POST路由寄存器,其他GET请求具有直接映射到端点中传递的参数的属性args
。使用POST时,我是否需要类似的东西来处理请求数据?如何获取从ajax传递的数据类型,然后在我的函数中使用它create_player();
WP REST API文档似乎不完整,我发现的所有信息都使用内置WordPress功能的端点,如帖子/ authors / blogs等但我不需要,我只想使用提供的功能并创建自己的界面。谢谢。
答案 0 :(得分:7)
可以使用以下内容:
$param = $request->get_param( 'some_param' );
// You can get the combined, merged set of parameters:
$parameters = $request->get_params();
https://www.coditty.com/code/wordpress-api-custom-route-access-post-parameters
答案 1 :(得分:6)
$request->get_body();
回调方法中的register_rest_route
。
答案 2 :(得分:0)
在注册路由时在方法中添加POST,并在回调函数中通过$request
数组访问POST变量。就是这样。