我有一个使用Lavarel设计的CRM系统。我要做的是选择一些联系人,点击保存按钮(我必须在导出为CSV之前保存)。
然而,在我点击下载按钮之后,我的联系人将不会导出为CSV,我收到此错误:
Symfony \ Component \ Debug \ Exception \ FatalErrorException(E_ERROR)调用未定义的方法Symfony \ Component \ HttpFoundation \ BinaryFileResponse :: withCookie() 打开:/home/mirjamro/public_html/mr-admin.com/app/filters.php
Auth::logout(); return Redirect::to(URL::route('AdminShowLogin')); }
if(Auth::check()){
$ckname=Auth::getRecallerName(); //Get the name of the cookie, where remember me expiration time is stored
$ckval=Cookie::get($ckname); //Get the value of the cookie
return $response->withCookie(Cookie::make($ckname,$ckval,1440)); //change the expiration time
}
});
我无法从服务器下载任何内容。
答案 0 :(得分:1)
更改代码:
function validateThisField(fieldID,fieldType){
为:
return $response->withCookie(Cookie::make($ckname,$ckval,1440));