我正在尝试获取动态创建的表的列。我查看了this question,以了解如何获取列。
\DB::getSchemaBuilder()->getColumnListing(\DB::table('product_list')
->join('product_categories', 'product_list.product_category', '=', 'product_categories.id')
->join('product_types', 'product_list.product_type', '=', 'product_types.id')
->where('product_list.id', $this->id)
->orderBy('product_list.id', 'DESC')
->get()
);
但是,这给了我[]
的输出。如果我运行命令时未使用\DB::getSchemaBuilder()->getColumnListing()
进行封装,则会得到以下信息:
Collection {#652 ▼
#items: array:1 [▼
0 => {#650 ▼
+"id": 3
+"cost": "150.00"
+"product_category": 1
+"product_type": 3
+"product_score": 0
+"created_at": "2019-01-16 16:34:29"
+"updated_at": "2019-01-16 16:34:29"
+"rating": 0
+"down_payment": "10.00"
+"title": "Static"
+"price_start": "50.00"
+"price_stop": "150.00"
+"theme": "Custom"
+"pages": 4
+"rbac": 0
+"portal": 0
+"external_software": 0
+"company_supplier": "Iezon Solutions"
}
]
}
如何获取所有列的数组?
答案 0 :(得分:1)
如果只需要动态创建的表列名,一个快速的解决方案是:
DispatchQueue.main.async
答案 1 :(得分:0)
这可能是迄今为止最糟糕的解决方案,但是我没有时间搜索收集文档以找到更好的方法或使用Laravel功能的方法。
我决定将其转换为toArray()
,使用第一个索引[0]
并将其转换为数组。然后,这使我可以使用array_keys()
查找列名。
array_keys((array) \DB::table('product_list')->join('product_categories', 'product_list.product_category', '=', 'product_categories.id')
->join('product_types', 'product_list.product_type', '=', 'product_types.id')
->where('product_list.id', $this->id)
->orderBy('product_list.id', 'DESC')->get()->toArray()[0])