React Native 中出现意外错误
2018-07-14
259
我是 react-native 的新手,正在创建一个用于学习的演示。我的 DataDetail 文件的第 11 行出现错误 DataDetail.js Unexpected token (11:2) 。以下是我的 DataDetail 文件的代码。
1. //DataDetail.js
2.
3. import React from 'react';
4. import {Text,View} from 'react-native';
5.
6. const DataDetail = (props) => {
7. return (
8. <View>
9. <Text>{props.objData.title}</Text>
10. </View>>
11. );
12. };
13.
14. export default DataDetail;
我从我的组件调用它:
import DataDetail from './DataDetail';
import React, {Component} from 'react';
import {Text,View} from 'react-native';
import axios from 'axios';
export default class Home extends Component<Props> {
state = {arrData:[]};
componentWillMount(){
axios.get('https://reduxblog.herokuapp.com/api/posts')
.then(response => this.setState({arrData:response.data}));
}
renderList(){
return this.state.arrData.map(data => <DataDetail key={data.id} objData={data} />);
}
render() {
return (
<View>
{this.renderList()}
</View>
);
}
}
有人能帮我理解一下,我在这里做错了什么吗?
谢谢
1个回答
关闭
View
标签时,您有 2 个
>
。
6. const DataDetail = (props) => {
7. return (
8. <View>
9. <Text>{props.objData.title}</Text>
10. </View>
11. );
12. };
Dez
2018-07-14