嗨,我需要有关如何从Web服务中的数组中获取特定值的帮助,我正在使用fetch方法获取数据。它是XML,我正在使用依赖项将xml数据转换为JSON。 / p>
import React from "react";
import {StyleSheet,View,ActivityIndicator,FlatList,Text,TouchableOpacity} from "react-native";
export default class Source extends React.Component {
static navigationOptions = ({ navigation }) => {
return {
title: "Source Listing",
headerStyle: {backgroundColor: "#fff"},
headerTitleStyle: {textAlign: "center",flex: 1}
};
};
constructor(props) {
super(props);
this.state = {
loading: false,
items:[]
};
}
FlatListItemSeparator = () => {
return (
<View style={{
height: .5,
width:"100%",
backgroundColor:"rgba(0,0,0,0.5)",
}}
/>
);
}
renderItem=(data)=>
<TouchableOpacity style={styles.list}>
<Text style={styles.lightText}>{data.item.name}</Text>
<Text style={styles.lightText}>{data.item.email}</Text>
<Text style={styles.lightText}>{data.item.company.name}</Text>
</TouchableOpacity>
render(){
{
if(this.state.loading){
return(
<View style={styles.loader}>
<ActivityIndicator size="large" color="#0c9"/>
</View>
)}}
return(
<View style={styles.container}>
<FlatList
data= {this.state.dataSource}
ItemSeparatorComponent = {this.FlatListItemSeparator}
renderItem= {item=> this.renderItem(item)}
keyExtractor= {item=>item.id.toString()}
/>
</View>
)}
}
const parseString = require('react-native-xml2js').parseString;
fetch('http://192.168.200.133/apptak_service/apptak.asmx/Get_Item_Master')
.then(response => response.text())
.then((response) => {
parseString(response, function (err, result) {
console.log(response)
});
}).catch((err) => {
console.log('fetch', err)
this.fetchdata();
})
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff"
},
loader:{
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#fff"
},
list:{
paddingVertical: 4,
margin: 5,
backgroundColor: "#fff"
}
});
一般来说,我是本机和开发人员,我非常感谢任何帮助。我需要分隔元素并在应用程序中显示特定元素。
答案 0 :(得分:1)
据我从您的代码可以看出,您没有将获取的数据传递到您的状态。您只在控制台中记录它:
parseString(response, function (err, result) {
console.log(response)
});
我认为您应该在组件中添加以下内容:
1。首先,设置要在构造函数中调用的函数,以便它可以访问状态:
constructor(props) {
super(props);
this.state = {
loading: false,
items:[]
};
this.fetchRequest = this.fetchRequest.bind(this)
}
在render
内创建实际函数:
fetchRequest() {
fetch('http://192.168.200.133/apptak_service/apptak.asmx/Get_Item_Master')
.then(response => response.text())
.then((response) => {
parseString(response, function (err, result) {
this.setState({ items: response });
});
}).catch((err) => {
console.log('fetch', err)
})
}
您需要调用fetchRequest
函数。您可以在lifecycle method of your component中进行此操作:
componentDidMount() {
fetchRequest();
}
最后一件事是正确创建Flatlist
:
<FlatList
data= {this.state.items}
renderItem={({ item }) => <Item title={item.title} />}
keyExtractor= {item=>item.id.toString()}
/>
您的数据源是this.state.items
,而不是this.state.dataSource
。
不幸的是,我不知道您的数据是什么样子,所以我不知道应该如何写keyExtractor
和<Item>
。我可以告诉您的是,您的商品需要唯一的ID。
您可以在React Native docs中阅读有关Flatlist
的更多信息。