man*_*box 2 javascript reactjs react-native react-native-navigation react-navigation
我的问题是我无法将函数作为参数传递给react-navigation v5 中的标头组件。
从filtersscreen.js中下面给定的代码中,我想将savefilters传递给navigation.js中的headerRight。
我可以在log-1中查看保存参数。但是为什么我无法在 log-2(即 FilterNavigator)中获取保存参数。
当我使用 setParams() 时,我收到警告 - “在导航状态中发现不可序列化的值,这可能会破坏持久化和恢复状态等使用。如果您传递了不可序列化的值(例如函数、类),则可能会发生这种情况params 中的实例等。如果您需要在选项中使用带有回调的组件,则可以使用 'navigation.setOptions' 代替。请参阅https://reactnavigation.org/docs/troubleshooting.html#i-get-the-warning -我们在导航状态中找到了不可序列化值以获取更多详细信息。”
当我使用navigation.setOptions({ save: savefilters })时,我无法在route.params.save中找到保存
我是反应原生新手,我请求你帮助我解决这个问题。
我阅读了文档React Navigation v5。
我记录了下面的输出。谢谢。
const FiltersNavigator = props => {
return (
<screen.Navigator initialRouteName="Filters">
<screen.Screen
options={{
title: 'Filters',
headerRight: () => (
<View>
<TouchableNativeFeedback>
<MaterialCommunityIcons
name="content-save"
color="white"
size={28}
style={{padding: 15}}
onPress={() => console.log(props)} //log-2 attached below
/>
</TouchableNativeFeedback>
</View>
),
}}
name="Filters Meals"
component={FiltersScreen}
/>
</screen.Navigator>
);
};
Run Code Online (Sandbox Code Playgroud)
const FilterSwitch = props => {
return (
<View style={styles.filterContainer}>
<Text>{props.label}</Text>
<Switch
trackColor={{true: Colors.primaryColor}}
thumbColor={Colors.primaryColor}
value={props.state}
onValueChange={props.onChange}
/>
</View>
);
};
const FiltersScreen = props => {
const {navigation} = props;
const [isGlutenFree, setIsGlutenFree] = useState(false);
const [isLactoseFree, setIsLactoseFree] = useState(false);
const [isVegan, setIsVegan] = useState(false);
const [isVegetarian, setIsVegetarian] = useState(false);
const saveFilters = useCallback(() => {
const appliedFilters = {
glutenFree: isGlutenFree,
lactoseFree: isLactoseFree,
vegan: isVegan,
vegetarian: isVegetarian,
};
}, [isGlutenFree, isLactoseFree, isVegan, isVegetarian]);
useEffect(() => {
navigation.setParams({
save: saveFilters,
});
console.log('useEffect : ', props); //log-1 attached below
}, [saveFilters]);
return (
<View style={styles.screen}>
<Text style={styles.title}>Available Filters / Restrictions</Text>
<FilterSwitch
label="Gluten-Free"
state={isGlutenFree}
onChange={newValue => setIsGlutenFree(newValue)}
/>
<FilterSwitch
label="Lactose-Free"
state={isLactoseFree}
onChange={newValue => setIsLactoseFree(newValue)}
/>
<FilterSwitch
label="Vegan"
state={isVegan}
onChange={newValue => setIsVegan(newValue)}
/>
<FilterSwitch
label="Vegetarian"
state={isVegetarian}
onChange={newValue => setIsVegetarian(newValue)}
/>
</View>
);
};
Run Code Online (Sandbox Code Playgroud)
{
"navigation": {
"addListener": [Function addListener
],
"canGoBack": [Function canGoBack
],
"closeDrawer": [Function anonymous
],
"dangerouslyGetParent": [Function dangerouslyGetParent
],
"dangerouslyGetState": [Function anonymous
],
"dispatch": [Function dispatch
],
"goBack": [Function anonymous
],
"isFocused": [Function isFocused
],
"jumpTo": [Function anonymous
],
"navigate": [Function anonymous
],
"openDrawer": [Function anonymous
],
"pop": [Function anonymous
],
"popToTop": [Function anonymous
],
"push": [Function anonymous
],
"removeListener": [Function removeListener
],
"replace": [Function anonymous
],
"reset": [Function anonymous
],
"setOptions": [Function setOptions
],
"setParams": [Function anonymous
],
"toggleDrawer": [Function anonymous
]
},
"route": {
"key": "Filters Meals-7XbV4LEyLo",
"name": "Filters Meals",
"params": {
"save": [Function anonymous
]
}
}
}
Run Code Online (Sandbox Code Playgroud)
{
"navigation": {
"addListener": [Function addListener
],
"canGoBack": [Function canGoBack
],
"closeDrawer": [Function anonymous
],
"dangerouslyGetParent": [Function dangerouslyGetParent
],
"dangerouslyGetState": [Function anonymous
],
"dispatch": [Function dispatch
],
"goBack": [Function anonymous
],
"isFocused": [Function isFocused
],
"jumpTo": [Function anonymous
],
"navigate": [Function anonymous
],
"openDrawer": [Function anonymous
],
"removeListener": [Function removeListener
],
"reset": [Function anonymous
],
"setOptions": [Function setOptions
],
"setParams": [Function anonymous
],
"toggleDrawer": [Function anonymous
]
},
"route": {
"key": "Filters-6CuzlMQv2w",
"name": "Filters",
"params": undefined,
"state": {
"index": 0,
"key": "stack-7UXVGRjyv-",
"routeNames": [Array
],
"routes": [Array
],
"stale": false,
"type": "stack"
}
}
}
Run Code Online (Sandbox Code Playgroud)
小智 5
在 React-navigation v5 中,你必须像这样设置和获取参数
// 你的 navigation.js 应该是
const FiltersNavigator = props => {
return (
<screen.Navigator initialRouteName="Filters">
<screen.Screen
name="Filters Meals"
component={FiltersScreen}
options={({route, navigation}) => ({
title: 'Filters',
headerRight: () => (
<View>
<TouchableNativeFeedback>
<MaterialCommunityIcons
name="content-save"
color="white"
size={28}
style={{padding: 15}}
onPress={() => route.params.save()}
/>
</TouchableNativeFeedback>
</View>
),
})}
/>
</screen.Navigator>
);
};
Run Code Online (Sandbox Code Playgroud)
// 你的 FiltersScreen 组件应该是
const FiltersScreen = props => {
const {navigation} = props;
const [isGlutenFree, setIsGlutenFree] = useState(false);
const [isLactoseFree, setIsLactoseFree] = useState(false);
const [isVegan, setIsVegan] = useState(false);
const [isVegetarian, setIsVegetarian] = useState(false);
const saveFilters = useCallback(() => {
const appliedFilters = {
glutenFree: isGlutenFree,
lactoseFree: isLactoseFree,
vegan: isVegan,
vegetarian: isVegetarian,
};
}, [isGlutenFree, isLactoseFree, isVegan, isVegetarian]);
useEffect(() => {
navigation.setParams({save: saveFilters});
}, [saveFilters]);
return (
<View style={styles.screen}>
<Text style={styles.title}>Available Filters / Restrictions</Text>
<FilterSwitch
label="Gluten-Free"
state={isGlutenFree}
onChange={newValue => setIsGlutenFree(newValue)}
/>
<FilterSwitch
label="Lactose-Free"
state={isLactoseFree}
onChange={newValue => setIsLactoseFree(newValue)}
/>
<FilterSwitch
label="Vegan"
state={isVegan}
onChange={newValue => setIsVegan(newValue)}
/>
<FilterSwitch
label="Vegetarian"
state={isVegetarian}
onChange={newValue => setIsVegetarian(newValue)}
/>
</View>
);
};
Run Code Online (Sandbox Code Playgroud)
如果您仍然遇到问题,可以参考此存储库 GitHub Repo
快乐编码;-)
| 归档时间: |
|
| 查看次数: |
8266 次 |
| 最近记录: |