私は初心者であり、すぐに完了する必要のあるプロジェクトに常に取り組んでいます。私はAPIを介して5000リストのデータをフェッチしましたが、スクロールで効率的ではないので、アプリケーションが壊れます。私はReact Native
のFlatList
コンポーネントを検索していましたが、これは自分のプロジェクトで正しく実装できません。 誰かがこの問題に取り組む方法の提案をしてください。私GalleryDetailが適切なスニペットを提供していないためinisideを効率的にスクロールできないネイティブアプリケーションに反応する
import React, {Component} from 'react';
import { Text, View, Image } from 'react-native';
import Card from './Card';
import CardSection from './CardSection';
const GalleryDetail = (props)=> {
return (
<Card>
<CardSection style = {styles.headerContentStyle}>
<Image
style={styles.thumbnailStyle}
source = {{ uri: props.photos.thumbnailUrl}}/>
<Text style= {styles.textStyle}>{props.photos.title}</Text>
</CardSection>
</Card>
);
};
const styles = {
headerContentStyle: {
flexDirection: 'column',
justifyContent: 'space-around'
},
thumbnailStyle: {
height: 50,
width: 50
},
textStyle: {
textAlign: 'right',
marginLeft: 3,
marginRight: 3,
}
}
export default GalleryDetail;
申し訳あり、どこで
import React, {Component} from 'react';
import {Text, View, FlatList, ScrollView } from 'react-native';
import axios from 'axios';
import GalleryDetail from './GalleryDetail';
class GalleryList extends Component {
state = { photos: []};
componentWillMount() {
axios.get('http://jsonplaceholder.typicode.com/photos')
.then(response => this.setState({ photos: response.data })).
catch((error)=> console.warn("fetch Error: ", error));
}
renderPhotos() {
return this.state.photos.map(photos =>
<GalleryDetail key={photos.id} photos= {photos}/>
);
}
render() {
return (
<View>
<ScrollView>
{this.renderPhotos()}
</ScrollView>
</View>
);
}
}
export default GalleryList;
below-私のソースコードを添付しています。助けてください
こんにちは@Carlos、 ありがとうそんなに使います。それは本当に私を大いに助けました。 あなたの提案に従って、私は第1意見と第2意見を実装しました。しかし、3番目には、_photo_ではなく、キーワードとして_photos_を使用する理由は、その中の写真を使用しているため、私が使用しているURLが原因であると言いたいだけです。 しかし、両方を試すと、コンテンツは画面に表示されませんが、コンテンツ本体にはすべてのスタイリングが画面に追加されます。 このような状況にどう対処するかについて少しお勧めします。 –
あなたのコードでAPIの応答を確認したところ、URLはhttpsではありません。それはiOSで読み込まれず、ドキュメントにあります:https://facebook.github.io/react-native/docs/running-on-device.html#1-enable-app-transport-security。 Android用にのみ動作します。 –
スニペットで説明されているようにすべての提案とコードを実装すると、アプリケーション内で画像とテキスト(GalleryDetailから)が表示されることはありません。私はエラーがポップアップしない理由を理解できません。 はい、私はリアドネイティブでいくつかの実践的な経験を置く必要があるので、今のところアンドロイドアプリケーションのAPIリンクを使用したいだけですが、この場所にいてはいけません。 @carlos –