使用react访问JSON数据

时间:2017-10-25 12:41:07

标签: reactjs react-native

我有一个这种形式的JSON

“description”:“{\”en \“:\”some text \“,\”fr \“:\”un autre text \“}”,

我可以这样访问英文文本

 <Cell cellTitle='test' cellDescription={JSON.parse(rowData.description).en}

但是当我使用包含当前语言的变量时,它不起作用。我试过这个

  render() {
     const lang = I18n.locale;
    return (
<Cell cellTitle='test' cellDescription={JSON.parse(rowData.description).lang}

<Cell cellTitle='test' cellDescription={JSON.parse(rowData.description).{lang}}

他们都没有奏效。你能帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

您就是这样做的:

from connections import XYZ

outfiles = '/path/to/outfiles'
source_path = '/path/a_file.list'

XYZ.rsyncFile(source_path, outfiles)