React-native const 组件不接收道具?
React-native const component doesn't receive props?
来自 React,我以为传递 props 是一样的,显然不是?
我有一个登录表单,我想在其中登录并使用不同样式的注册按钮。
在我的登录表单中,我有以下方法:
renderButton (type, text) {
if (this.state.loading) {
return <Spinner size="small" />;
}
let btnColors = {
bgColor: colors.whiteText,
textColor: colors.primaryTeal
};
if (type === "signUp") {
btnColors.bgColor = colors.whiteText;
btnColors.textColor = colors.primaryTeal;
} else if (type === "logIn") {
btnColors.bgColor = colors.darkTeal;
btnColors.textColor = colors.whiteText;
}
return (
<Button colors={btnColors} onPress={this.onButtonPress.bind(this)}>
{text}
</Button>
);
}
在渲染中调用:
{this.renderButton("signUp", "SIGN UP")}
Button.js 看起来像:
import React from 'react';
import { Text, TouchableOpacity, View, StyleSheet} from 'react-native';
const Button = ({colors, onPress, children }) => {
const styles = StyleSheet.create({
textStyle: {
alignSelf: 'center',
color: colors.textColor,
fontSize: 16,
fontWeight: '900',
paddingTop: 10,
paddingBottom: 10,
},
buttonStyle: {
flex: 1,
backgroundColor: colors.bgColor,
borderRadius: 50
},
});
return (
<TouchableOpacity onPress={onPress} style={styles.buttonStyle}>
<Text style={styles.textStyle}>
{children}
</Text>
</TouchableOpacity>
);
};
export { Button };
出现错误:
undefined is not an object (evaluating 'colors.textColor')
为什么它不起作用,我如何有条件地将道具作为对象传递以用于样式设置?
尝试将组件更改为 class 组件而不是功能组件,这应该可以解决问题...替代方案 ypu 可以使用粗箭头语法,如下所示:
const HelloWorld = ({name}) => ( <div>{`Hi ${name}`}</div>);
来自 React,我以为传递 props 是一样的,显然不是?
我有一个登录表单,我想在其中登录并使用不同样式的注册按钮。
在我的登录表单中,我有以下方法:
renderButton (type, text) {
if (this.state.loading) {
return <Spinner size="small" />;
}
let btnColors = {
bgColor: colors.whiteText,
textColor: colors.primaryTeal
};
if (type === "signUp") {
btnColors.bgColor = colors.whiteText;
btnColors.textColor = colors.primaryTeal;
} else if (type === "logIn") {
btnColors.bgColor = colors.darkTeal;
btnColors.textColor = colors.whiteText;
}
return (
<Button colors={btnColors} onPress={this.onButtonPress.bind(this)}>
{text}
</Button>
);
}
在渲染中调用:
{this.renderButton("signUp", "SIGN UP")}
Button.js 看起来像:
import React from 'react';
import { Text, TouchableOpacity, View, StyleSheet} from 'react-native';
const Button = ({colors, onPress, children }) => {
const styles = StyleSheet.create({
textStyle: {
alignSelf: 'center',
color: colors.textColor,
fontSize: 16,
fontWeight: '900',
paddingTop: 10,
paddingBottom: 10,
},
buttonStyle: {
flex: 1,
backgroundColor: colors.bgColor,
borderRadius: 50
},
});
return (
<TouchableOpacity onPress={onPress} style={styles.buttonStyle}>
<Text style={styles.textStyle}>
{children}
</Text>
</TouchableOpacity>
);
};
export { Button };
出现错误:
undefined is not an object (evaluating 'colors.textColor')
为什么它不起作用,我如何有条件地将道具作为对象传递以用于样式设置?
尝试将组件更改为 class 组件而不是功能组件,这应该可以解决问题...替代方案 ypu 可以使用粗箭头语法,如下所示:
const HelloWorld = ({name}) => ( <div>{`Hi ${name}`}</div>);