使用Maatwebsite
将Excel文件上传到数据库。
每一行都有一个属性类型,例如'penthouse'或'villa'。
我想收集每一行的每种属性类型。
使用以下功能无效:
Excel::filter('chunk')->load($csv->getRealPath())->chunk(250, function ($results) {
DB::table('prices')->truncate();
foreach ($results as $row) {
/**
* @var CellCollection $row
*/
array_push($this->property_types, $row->property_type);
$price = Price::create($row->all());
}
});
在$this->property_types
函数中定义__construct
,如:
public function __construct()
{
$this->middleware('auth');
$this->property_types = [];
}
这将导致一个空数组。
如上所述here,定义数组和using
&符号可能会解决问题,尽管这会返回相同的结果,即空数组。
$data = [];
Excel::filter('chunk')->load($csv->getRealPath())->chunk(250, function ($results) use (&$data) {
DB::table('prices')->truncate();
foreach ($results as $row) {
/**
* @var CellCollection $row
*/
array_push($data, $row->property_type);
$price = Price::create($row->all());
}
});
我需要做什么才能在匿名函数中定义数据,并在函数外部检索数据?
答案 0 :(得分:1)
问题在于,默认情况下,chunk()
方法将在队列内异步处理您的匿名函数。由于该函数由队列中的worker运行,因此您无法同步访问它在调用chunk()
方法的代码中处理的任何数据。
您可以通过将false
作为第三个参数传递给chunk()
方法来阻止使用队列。
Excel::filter('chunk')
->load($csv->getRealPath())
->chunk(250, function ($results) {
/* your code */
}, false);
作为补充说明,您在回调中呼叫truncate()
。我不知道这是否是故意的,但这会在每个处理过的块上截断你的表。