1

我创建了一个最简单的rest api route

   public static function register_my_route(){
    register_rest_route( 'vender/v1','test',array(
        'method' => 'POST',
        'callback' => function(){return 1;}
    ));
}

add_action( 'rest_api_init', array( __CLASS__, 'register_my_route' ) );

我用邮递员来测试它,总是返回“code”:“rest_no_route”,404,但如果我把它改成method => GET,它就可以了

4

1 回答 1

0

尝试使用WP_REST_Server常量并为您的声明定义权限。

add_action( 'rest_api_init', function() {
    register_rest_route( 'vender/v1', '/test', array(
        'methods'             => WP_REST_Server::CREATEABLE,
        'callback'            => function() { return 'works'; },
        'permission_callback' => function() { if ( ! current_user_can( 'edit_posts' ) ) { return false; } return true; },
    ) );
} );

希望这可以帮助!

于 2017-02-10T00:12:37.887 回答