Lumen在Post上给出了500页内部错误的空白页面

时间:2016-03-05 17:13:00

标签: laravel debugging nginx digital-ocean lumen

我让Lumen工作了。在命中错误的路由时进行调试,它会给出正确的Laravel错误日志。但是,当我尝试使用Post路由并且它给出500内部错误时,网络中的页面是空白的。 Chrome说This request has no response data available

我的.env

APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomKey!!!

我不确定它是否与主机相关,但我在数字海洋中使用nginx。

我尝试在public / index.php中添加它,但没有运气..

try {
    $app->run();
} catch(\Exception $e) {
    echo "<pre>";
    echo $e;
    echo "</pre>";
}

可能是什么问题

修改:我要调用的函数:

public function index(Request $request) {
        $a = $request->all();

        foo($a)
}

private function foo($a) {
      print($a)
}

1 个答案:

答案 0 :(得分:0)

试试这个:

ldf <- list() # creates a list
listcsv <- dir(pattern = "error*") # creates the list of all the csv files in the directory
for (k in 1:length(listcsv)){
ldf[[k]] <- read.csv(listcsv[k],header=FALSE,fill=TRUE,skip=4)
}