以下样式组件会引发错误:
const StyledButton = styled.button`
font-weight: 400;
vertical-align: middle;
text-align: center;
text-decoration: none;
white-space: nowrap;
margin-right: 0.2rem;
outline: 0;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-appearance: none;
`
const { oneOf, bool } = PropTypes
// button has no md size
StyledButton.propTypes = {
/** enable block styling on the button */
block: bool,
/** size variant for the button */
size: oneOf(['lg', 'sm', 'md']),
/** style variant for the button */
style: oneOf(['primary', 'grey', 'darkgrey', 'link', 'danger'])
}
StyledButton.defaultProps = {
size: 'md',
style: 'primary'
}
错误
Error: The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX. This DOM node was rendered by `styled.button`.
at invariant (invariant.js?7313:44)
at assertValidProps (ReactDOMComponent.js?922a:152)
at ReactDOMComponent.mountComponent (ReactDOMComponent.js?922a:452)
at Object.mountComponent (ReactReconciler.js?c56c:45)
at ReactCompositeComponentWrapper.performInitialMount (ReactCompositeComponent.js?063f:370)
at ReactCompositeComponentWrapper.mountComponent (ReactCompositeComponent.js?063f:257)
at Object.mountComponent (ReactReconciler.js?c56c:45)
at ReactCompositeComponentWrapper.performInitialMount (ReactCompositeComponent.js?063f:370)
at ReactCompositeComponentWrapper.mountComponent (ReactCompositeComponent.js?063f:257)
at Object.mountComponent (ReactReconciler.js?c56c:45)
工作版
当我为组件注释propTypes
和defaultProps
时,它能够呈现某种按钮。
https://www.webpackbin.com/bins/-KsrPX89Zi6MnRw9X11E
这要求每个样式化组件都需要使用额外的组件才能利用prop-types
。是否有机制或替代API允许我使用样式组件而不将其包装在其他组件中。
答案 0 :(得分:4)
错误:
style
道具需要从样式属性到值的映射,而不是字符串。例如,使用JSX时style = {{marginRight:spacing +'em'}}。此DOM节点由styled.button
呈现。
StyledButton.defaultProps = {
size: 'md',
style: 'primary' //is the wrong way.
}
它应该是
StyledButton.defaultProps = {
size: 'md',
style: { color : 'red'} //e.g.
}
style属性总是eexpect对象{key : value}
其中key是css属性,value是这些键的任何有效css值
e.g。
style : {
border: '1px solid red',
font-size: 12px,
}