好的,所以当我收到此错误时,我才开始了解React Native:
error: bundling failed: SyntaxError in /AlbumDetail.js: Unexpected token, expected ... (39:20)
我不能为我的生活弄清楚,并且在Google等地方没有看到这个问题
在AlbumDetail.js中:
<CardSection>
<Button onPress{() => console.log('pressed')} />
</CardSection>
在Button.js中:
const Button = ({ onPress }) => {
const { buttonStyle, textStyle } = styles;
return (
<TouchableOpacity onPress={onPress} style={buttonStyle}>
<Text style={textStyle}>
Click me!
</Text>
</TouchableOpacity>
);
};
当我将AlbumDetail.js中的行更改为此时,它可以工作:
<CardSection>
<Button onPress{} />
</CardSection>
请救救我,Stack Overflow的甜蜜人物!我提前爱你:)。