在我的 Laravel 5.6 应用程序中,我尝试将一个$id
变量从我的路由传递到我的数据表的每一列。
我的代码:
public function getVendorslistChange($id){
try {
return Datatables::of($this->purchaseRepository->getVendorListData(),$id)
->addColumn('action', function ($vendor,$id) {
return \Form::open(['method' => 'POST', 'action' => ['PurchaseController@postChangeVendor',$id], 'class' => 'form']) . '
<input type="hidden" name="id" value="' . $vendor->id . '" />
<input type="submit" name="submit" value="Choose" class="btn center-block" />
' . \Form::close();
})
->make(true);
} catch (\Exception $e) {
return $this->redirectWithErrors($e);
}
}
这部分$this->purchaseRepository->getVendorListData()
将返回以下内容:
public function getVendorListData(){
$this->vendors = Vendor::Select(
array(
'vendors.id',
'vendors.company_name'
))
->where('vendors.company_id',return_company_id())
->where('status','Active')->get()
;
return $this->vendors;
}
但是有错误说,$id
不能传递给addColumn
.
函数 App\Http\Controllers\PurchaseController::App\Http\Controllers{closure}() 的参数太少,在 /Applications/XAMPP/xamppfiles/htdocs/laravel-project/american_dunnage/vendor/yajra/laravel-datatables 中传递了 1 个-oracle/src/Utilities/Helper.php 在第 64 行,预计正好 2
将这样的参数传递给数据表的每一列的正确方法是什么?