传播类型只能从对象类型创建

时间:2018-02-10 14:03:30

标签: reactjs typescript react-native ecmascript-6 spread-syntax

我有一个简单的react-native组件使用ts来指定它自己的样式,但是我也想从组件树上面传递我可能使用的任何样式(即我正在使用这个组件的地方)

class RatioImage extends React.Component<Props> {
  render() {
    const { width, ratio, style, ...props } = this.props;
    return (
      <Image
        {...props}
        style={{
          width: deviceWidth * (width / 100),
          height: deviceWidth * (width / 100) * ratio,
          ...style
        }}
      />
    );
  }
}

我目前在我的...style上收到错误,不知道为什么,因为它应该是一个对象?

[ts] Spread types may only be created from object types.
const style: false | ImageStyle | (number & {
    __registeredStyleBrand: ImageStyle;
}) | RecursiveArray<false | ImageStyle | (number & {
    __registeredStyleBrand: ImageStyle;
}) | null | undefined> | null | undefined

1 个答案:

答案 0 :(得分:1)

您需要使用数组语法在react native

中提供多个样式
<Image style={[{ width: x, height; y}, style]} />

请参阅the docs for more info