我想将function jsonFriendlyErrorReplacer(key, value) {
if (value instanceof Error) {
return {
// Pull all enumerable properties, supporting properties on custom Errors
...value,
// Explicitly pull Error's non-enumerable properties
name: value.name,
message: value.message,
stack: value.stack,
}
}
return value
}
let obj = {
error: new Error('nested error message')
}
console.log('Result WITHOUT custom replacer:', JSON.stringify(obj))
console.log('Result WITH custom replacer:', JSON.stringify(obj, jsonFriendlyErrorReplacer))
设置为与tabBar margin
相对应,但似乎不起作用。在Animated.Value
中,将tabBarOptions
设置为marginTop
,但是在滚动视图时它没有响应。下面是我的代码:
this.AnimatedHeaderValue
我认为这是设置边距值的正确方法,如果我希望它对应于滚动值。但似乎不起作用。知道为什么吗?评论或建议会非常有帮助,谢谢:)