Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 livewire 从 url "example.com/user?type=agent" 获取类型的值。
我尝试使用 Input::get('type') 但在 livewire 组件类中不起作用
我使用文档查询字符串让它工作
我不知道livewire,但它看起来像laravel。试试看嘛
Input::query('type')
你可以做:
HTTP 请求
use Illuminate\Http\Request; $type = $request->input('type');
助手请求方法
$type = request('type');