REST Api不使用表单数据中的IFRAME

时间:2018-10-01 作者:Sugam Patel

我已经创建了一个带有post请求的api。

register_rest_route(\'myapi/v1\', \'/post_flyer\', array(
        \'methods\' => \'POST\',
        \'callback\' => \'api_post_flyer\',
    ));
我必须提交表单数据<iframe></iframe><script></script> 在帖子内容中添加标签。

当我尝试使用postman检查此api时,每次它都会显示错误,如“找不到路由”,

"code": "rest_no_route",
"message": "No route was found matching the URL and request method",
"data": {
    "status": 404
}
虽然整个功能都存在,但我想知道如何让api接受帖子内容的iframe和html标记?

enter image description here

1 个回复
SO网友:Pratik Patel

请删除"/" 从路由并尝试使用添加操作,如

add_action( \'rest_api_init\', function () {    
register_rest_route(\'myapi/v1\', \'post_flyer\', array(
            \'methods\' => \'POST\',
            \'callback\' => \'api_post_flyer\',
        ));
});

结束