第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在反應(yīng)本機(jī)中按下字段時(shí)過(guò)濾項(xiàng)目

在反應(yīng)本機(jī)中按下字段時(shí)過(guò)濾項(xiàng)目

泛舟湖上清波郎朗 2022-10-13 15:39:35
我有一個(gè)帶有不同卡片的屏幕(有文章信息)我試圖在按下方便的類(lèi)別時(shí)按類(lèi)別過(guò)濾文章我希望選擇該類(lèi)別并顯示屬于該類(lèi)別的文章,另一方面當(dāng)沒(méi)有選擇任何類(lèi)別時(shí),將所有類(lèi)別中的所有文章都交給顯示(如果您看下面的圖片,這將更有意義)用于顯示不同類(lèi)別圖片的代碼:import TouchableScale from "react-native-touchable-scale";import { category } from "../api/data";import colors from "../config/colors";function HotTopics({ navigation }) {  //const { width, height } = Dimensions.get("window");  return (    <View style={styles.Container}>      <View>        <Text style={styles.CategoryText}>Hot Topics</Text>      </View>      <FlatList        horizontal        showsHorizontalScrollIndicator={false}        style={{ paddingHorizontal: 15 }}        data={category}        keyExtractor={(item) => item.id}        renderItem={({ item }) => {          return (            <View>              <View>                <TouchableScale                  activeScale={0.9}                  tension={50}                  friction={7}                  useNativeDriver                  onPress={() => navigation.navigate({ id: item.id })}                >                  {/* to show the horizental news list*/}                  <Image                    source={{ uri: item.image }}                    style={{                      width: 100,                      height: 120,                      borderRadius: 16,                      marginRight: 10,                    }}                  />                  {/* to show the news titles inside the pictures*/}                  <SharedElement                    id={`item.${item.id}.text`}                    style={{                      width: 100,                      position: "absolute",                      bottom: 95,                      //left: 10,                      paddingHorizontal: 5,                      justifyContent: "center",                      alignItems: "center",                    }}       
查看完整描述

1 回答

?
嗶嗶one

TA貢獻(xiàn)1854條經(jīng)驗(yàn) 獲得超8個(gè)贊

處理這個(gè)問(wèn)題的最簡(jiǎn)單方法是有一個(gè)回調(diào)函數(shù)來(lái)設(shè)置 HotTopics 組件的狀態(tài),如下所示

const [category, setCategory] = useState();

在渲染中

  <HotTopics onCategorySelect={setCategory} /> 
   <ArticleListVer post={filterResultsByCategory(category)} />

對(duì)于熱門(mén)話題的點(diǎn)擊,你可以做

onPress={() =>
            this.props.onCategorySelect(item.category)
          }

通過(guò)這樣做,您將使用新類(lèi)別重新呈現(xiàn)父級(jí)。對(duì)于重置,您需要一個(gè)按鈕將狀態(tài)重置為空,以便顯示所有項(xiàng)目。


查看完整回答
反對(duì) 回復(fù) 2022-10-13
  • 1 回答
  • 0 關(guān)注
  • 89 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)