-1

我在 Blade 设置了这样的会话值:

@php
if(...){
    Session::put('sent','city')
}else{
    Session::put('sent','country')
}
@endphp

现在,我需要sent在控制器上检查会话值,但不知道如何......

所以如果你知道,请帮助我。

谢谢。

4

1 回答 1

0

与插入值(文档)相同:

public class SomeController{
  public function some_method(){
    $value = session()->get('sent');
    // or if you are not certain that the value is being set
    $value = session()->get('sent', 'default_value');
  }
}
于 2021-07-10T12:20:26.493 回答