Laravel中未加密的cookie

时间:2016-01-27 05:15:44

标签: laravel laravel-5 laravel-5.1

我需要阅读我的Laravel应用程序设置的JS中的cookie。有没有办法在Laravel中执行此操作(而不是直接通过PHP设置)而不覆盖类?

1 个答案:

答案 0 :(得分:21)

查看namespace App\Http\Middleware; use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter; class EncryptCookies extends BaseEncrypter { /** * The names of the cookies that should not be encrypted. * * @var array */ protected $except = [ 'my_cookie' ]; } 中间件 - 这允许您设置例外;也就是说,不加密的cookie。

```{r chunkname}

plot(x,y)

```