tp6 success传递参数怎么获取
发布网友
发布时间:2022-05-05 13:42
我来回答
共1个回答
热心网友
时间:2022-06-27 14:05
取单个数据值同时进行类型转换
$this->request->param(‘abc’,1,‘intval’)
使用依赖注入的形式
public function index(Request $request){undefined
return $request->param(‘abc’);
}
使用助手函数
input(‘abc’);
使用框架提供的request()方法
request()->param(‘abc’);
门面模式静态调用
use think\facade\Request;
public function index(){undefined
return Request::param(‘abc’);
}杜绝无效请求
开启TP的开发调试模式