概述
比如在教程中写的api中的
use IlluminateHttpRequest;
$api = app('DingoApiRoutingRouter');
$api->version('v1', [
'namespace' => 'AppHttpControllersApi'
], function($api) {
// 短信验证码
$api->post('verificationCodes', 'VerificationCodesController@store')
->name('api.verificationCodes.store');
});
$api->post 会出现下划线,说是方法未找到?这是为什么?
又或者在在controller中
public function store(VerificationCodeRequest $request, EasySms $easySms)
{
$phone = $request->phone;
// 生成4位随机数,左侧补0
$code = str_pad(random_int(1, 9999), 4, 0, STR_PAD_LEFT);
try {
$result = $easySms->send($phone, [
'content' => "【Lbbs社区】您的验证码是{$code}。如非本人操作,请忽略本短信"
最后
以上就是威武百褶裙为你收集整理的php api method,请问在 api.php 或者 controller 中经常出现 Method not found 是什么问题的全部内容,希望文章能够帮你解决php api method,请问在 api.php 或者 controller 中经常出现 Method not found 是什么问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复