wordpress-rest-api接收的数据类型定义

直接上代码吧,如下所示

register_rest_route( \'gy/v1\', \'param\', [
    \'methods\'   => \'GET\',
    \'callback\'  => \'gy_rest_param_callback\',
    \'args\'=>[
      \'name\'=>[
      \'description\'=>\'this is discription\',//参数描述
      ],
      \'age\'=>[
        \'required\'=>true,
        \'type\'=>\'integer\',
      ],
      //number,integer,string
      \'sex\'=>[

      ],
      ]
  ]);

我们注册了多个参数,我们需要对类型做限制,于是尝试了几种类型

integer,string,number,boolean

这几种是有效的,float类型测试无效。不过目前这几中就够使用了。

暂无评论

相关推荐

php 脚本指定参数

<?php $param_arr = getopt('a:b:'); $a = $param_arr['a'] 调用 php script.php -av1 -bv2 注 …

php时间戳添加时分秒等偏移

我们使用time()可以打印出时间戳,但是我们想要加个偏移,比如用于缓存等,我们就要添加时分秒的偏移,可以用下边的代 …

php重新安装curl扩展

因为我们的php不支持https,所以我们需要重新编译php,不过因为我们用的是M1,有一些问题待解决,最终失败在了php安装 …

微信扫一扫,分享到朋友圈

wordpress-rest-api接收的数据类型定义