我可以将整数值传递给 WP REST API。但是,不能传递非数字字符。它给出了错误。
这是我用的...
add_action( 'rest_api_init', function () {
register_rest_route( 'crowdapi/v1', '/register/(?P<id>\d+)/(?P<username>\d+)', array(
'methods' => 'POST',
'callback' => 'userCheck',
) );
} );
知道如何传递字符串..吗?