securedeveloper / react-data-export

Export dataset in react.
https://securedeveloper.github.io/react-data-export/
MIT License
179 stars 198 forks source link

Can excelColumn value support a.b.c ? #71

Closed plainnany closed 6 years ago

plainnany commented 6 years ago

hi, there is my dataSource , just Like

const dataSource = [{
  name: 'John', 
  age:  18,
  info: {
    work: 'programmer',
    location: 'China'
  }
}, {
  name: 'Nany', 
  age:  18,
  info: {
    work: 'programmer',
    location: 'USA'
  }
}]

Is possible to export info.location ? I try to <ExcelColumn label="location" value="info.location"} />, but it doesn't work

securedeveloper commented 6 years ago

@plainnany please use <ExcelColumn label="location" value="(col) => col.info.location"} />

securedeveloper commented 6 years ago

I hope this will work, I'm closing this issue, feel free to re-open if you still have any related issues. :)