为什么加上between之后 在url中输入?count=3 就会提示服务器内部错误
来源:8-18 最近新品接口编写
慕前端6301706
2019-05-28
class Count extends BaseValidate
{
protected $rule =
[
count’ => ‘isPositiveInteger| between:1,15’
];
}
访问z.cn/api/v1/product/recent?count=3 就会提示
{
“msg”: “服务器内部错误”,
“error-code”: 999,
“request_url”: “/api/v1/product/recent?count=3”
}
如果不加between 判断就可以输入最近15个商品
写回答
1回答
-
7七月
2019-05-29
服务器内部错误,不是具体的错误,需要看一下具体的异常信息。
00
相似问题