当我用query
prop在堆栈导航器中推送Posts
屏幕时,前一个屏幕也会更新,所有屏幕中的所有数据都相同。
navigation.dispatch(StackActions.push('Posts', { query: { keyword: 'iphone' } }))
或
navigation.push('Posts', { query: { keyword: 'iphone' } })
有什么办法吗?
x1米2英寸x1米3英寸
当我用query
prop在堆栈导航器中推送Posts
屏幕时,前一个屏幕也会更新,所有屏幕中的所有数据都相同。
navigation.dispatch(StackActions.push('Posts', { query: { keyword: 'iphone' } }))
或
navigation.push('Posts', { query: { keyword: 'iphone' } })
有什么办法吗?
x1米2英寸x1米3英寸
1条答案
按热度按时间62lalag41#
由于我在我的应用程序中使用了
@tanstack/react-query@4.^
库react-navigation@6.^
,当我推Posts
屏幕时,每次推前一个屏幕也会改变。我不知道为什么,但现在我使用react-native fetch,它工作正常。