我需要阅读我的Laravel应用程序设置的JS中的cookie。有没有办法在Laravel中执行此操作(而不是直接通过PHP设置)而不覆盖类?
答案 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)
```