简体   繁体   English

React Native得到TypeError:undefined不是一个对象(正在评估'_this.state.apiData.items.map')

[英]React Native getting TypeError: undefined is not an object(evaluating '_this.state.apiData.items.map')

I'm new at react-native. 我是本机新手。 I got json data from node.js server. 我从node.js服务器获取了json数据。 I checked data sending process is already done. 我检查数据发送过程已经完成。

But react-native keep showing me the error 但是反应本机不断向我显示错误

TypeError: undefined is not an object(evaluating '_this.state.apiData.items.map') TypeError:未定义不是对象(正在评估'_this.state.apiData.items.map')

I've got json data like this 我有这样的json数据

json data
{
"lastBuildDate": "Wed, 22 May 2019 13:13:34 +0900",
"total": 1,
"start": 1,
"display": 1,
"items": [
{
"title": "Booktitle",
"link": "http://book.naver.com/bookdb/book_detail.php?bid=14027973",
"image": "https://bookthumb-phinf.pstatic.net/cover/140/279/14027973.jpg?type=m1&udate=20190427",
"author": "Authorname",
"price": "15800",
"discount": "14220",
"publisher": "Publishername",
"pubdate": "20181010",
"isbn": "8965746663 <b>9788965746669</b>",
"description": "discriptions"

}
]
}

and this is the code which got error 这是出错的代码

export default class Isbnsearch extends React.Component {
constructor(props) {
    super(props);
    this.state = {
        currentDate: new Date(),
        markedDate: moment(new Date()).format(),
        isPopVisible: false,
        apiData: [],
    }
    this.ISBN = null;
    this.book_name = null;
    this.img_src = null;
    this.author = null;
    this.publisher = null;
    this.public_date = null;
    this.more_url = null;
    this.read_rate = null;
    this.read_date = null;
    this.category = null;
    this.best = null;
}

togglePop = () => {
    this.setState({ isPopVisible: !this.state.isPopVisible });
    fetch('http://220.149.242.12:10001/search/book/' + (this.ISBN), {
        method: 'GET'
    }).then((responseData) => {
        return responseData.json();
    }).then((jsonData) => {
        console.log(jsonData);
        this.setState({ apiData: jsonData })
        console.log(this.state.apiData)
    }).done();
    this.ISBN = null;
    this.book_name = null;
    this.img_src = null;
    this.author = null;
    this.publisher = null;
    this.public_date = null;
    this.more_url = null;
    this.read_rate = null;
    this.read_date = null;
    this.category = null;
    this.best = null;
}

render() {
    const data = this.state.apiData;
    const today = this.state.currentDate;
    var dataDisplay = data.items.map(function(item) {
        return (
            <View style={styles.popfirst}>
                <View style={styles.popsecond}>
                    <View style={styles.popthird}>
                        <View style={{ paddingTop: 30, }}>
                            <Text style={{ color: '#52C8B2', fontSize: 20, }}>book information check</Text>
                        </View>
                        <View style={{ paddingTop: 20, }}>
                            <Image style={{ width: 150, resizeMode: 'contain', }}
                                source={{ uri: item.image }}>
                            </Image>
                        </View>
                        <View style={{ paddingTop: 10, }}>
                            <Text style={{ fontSize: 18, }}>{item.title}</Text>
                        </View>
                        <View style={{ paddingTop: 10, }}>
                            <Text style={{ color: '#D7D7D7' }}>{item.author} | {item.publisher} | {today}</Text>
                        </View>
                        <View style={styles.popbtn}>
                            <View style={{ width: 10, }}></View>
                            <View style={styles.popbtnleft}>
                                <SwitchButton
                                    onValueChange={(val) =>     this.setState({ activeSwitch: val })}
                                    text1='reading'
                                    text2='done'
                                    switchWidth={120}
                                    switchHeight={30}
                                    switchdirection='ltr'
                                    switchBorderRadius={0}
                                    switchSpeedChange={500}
                                    switchBorderColor='#52C8B2'
                                    switchBackgroundColor='#F2F2F2'
                                    btnBorderColor='#52C8B2'
                                    btnBackgroundColor='#52C8B2'
                                    fontcolor='#333'
                                    activeFontColor='#FFF'
                                />
                            </View>
                        </View>
                        <View style={styles.popbtnbig}>
                            <TouchableOpacity style={styles.bigbtn} onPress={this.togglePop}><Text style={{ fontSize: 16, color: '#FFF' }}>cancle</Text></TouchableOpacity>
                            <TouchableOpacity style={styles.bigbtn} onPress={this.togglePop}><Text style={{ fontSize: 16, color: '#FFF' }}>submit</Text></TouchableOpacity>
                        </View>
                    </View>
                </View>
            </View>
        )
    });
    return (
        <View style={cstyle.greycontainer}>
            <View style={styles.firstbox}>
                <Text style={{ color: '#FFF', fontSize: 20 }}>Input the ISBN code</Text>
            </View>
            <View style={styles.secondbox}>
                <TextInput style={styles.input}
                    placeholder="Enter ISBN"
                    onChangeText={(text) => { this.ISBN = text }}
                    value={this.ISBN}
                />
                <TouchableOpacity style={styles.searchbtn} onPress={this.togglePop}>
                    <IonIcon name="ios-search" size={30} color='#FFF' />
                </TouchableOpacity>
            </View>
            <View style={styles.firstbox}>
                <TouchableOpacity style={styles.greenbtn}>
                    <Text style={{ color: '#FFF', fontSize: 20 }}>cancle</Text>
                </TouchableOpacity>
            </View>
            <Modal isVisible={this.state.isPopVisible}>
                {dataDisplay}
            </Modal>
        </View>
    );

}
}

I want to get data from array "items". 我想从数组“项目”中获取数据。

I tried putting 我试过

this.togglePop = this.togglePop.bind(this) this.togglePop = this.togglePop.bind(this)

inside of 代替

constructor(props) 构造函数(道具)

but it dosen't work. 但这没用。

Because at first in the state, there is empty apiData . 因为首先处于状态,所以空apiData

So you can not access apiData.items . 因此,您无法访问apiData.items It will cause an error for sure. 肯定会导致错误。

So just put condition there when you're using it or in your case mapping it. 因此,只要在使用它或映射它的情况下在其中放置条件即可。

Like this, 像这样,

var dataDisplay = null;
if(data && data.items){
  dataDisplay = data.items.map(function(item) {
  ...
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 TypeError:undefined 不是 React Native 中的对象(正在评估“this.state.Gas”) - TypeError: undefined is not an object (evaluating 'this.state.Gas') in React Native react-native:TypeError:undefined 不是 object(正在评估“this.state”) - react-native : TypeError:undefined is not an object (evaluating 'this.state') React Native:TypeError:undefined 不是一个对象(评估&#39;_this.props.data.map&#39;) - React Native: TypeError: undefined is not an object (evaluating '_this.props.data.map') React Native TypeError: TypeError: undefined is not an object (评估&#39;this.props.data.map&#39;) - React Native TypeError: TypeError: undefined is not an object (evaluating 'this.props.data.map') react-native-maps-TypeError:未定义不是对象(正在评估&#39;_this.state.region&#39;) - react-native-maps - TypeError: undefined is not an object (evaluating '_this.state.region') TypeError: Undefined is not an object(评估'this.state.videos.map') - TypeError: Undefined is not an object (evaluating 'this.state.videos.map') 错误类型错误:未定义不是 object(正在评估“state.map”) - ERROR TypeError: undefined is not an object (evaluating 'state.map') 为什么我收到这个错误:undefined 不是一个评估 this.state.tracks[0].id 的对象 REACT-NATIVE - why im getting this error: undefined is not an object evaluating this.state.tracks[0].id REACT-NATIVE 类型错误:未定义不是对象(评估“data.filter”)-React Native - TypeError: undefined is not an object (evaluating 'data.filter') - React Native TypeError:undefined 不是 React Native 中的对象(评估“_this.props.navigation”) - TypeError: undefined is not an object (evaluating '_this.props.navigation') in React Native
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM