我在很多在线代码示例中都看到了这种情况,但是当我解析我的CSV文件时,我得到的只是字符串作为列索引,比如
public function show($employee)
{
$employee = Employees::find($employee);
$roles = Roles::pluck('role_name', 'id');
return view('employees.show')->withEmployee($employee)->withRoles($roles);
}
答案 0 :(得分:1)
data = Daru::DataFrame.from_csv('my_fancy_data.csv', headers: true, header_converters: :symbol)
来自文档:
您可以指定您对Ruby
.from_csv
函数执行的CSV.read()
函数的所有选项,因为这是内部使用的。