为了账号安全,请及时绑定邮箱和手机立即绑定

样式化组件在样式化对象中使用函数

样式化组件在样式化对象中使用函数

潇潇雨雨 2022-06-09 17:14:34
找不到一个清晰的例子,如何在 .css 对象中使用函数styled-components。它不会引发错误,但在提取道具时不会将背景添加到 CSS 输出中,如下例所示。// Simple color functionconst color = (error) => { if (error) {   return 'red' } return 'black',}作品- cssconst StyledInput = styled.input<InputProps>`  background: ${({ error }) => color(error)};`;工作- css 对象const StyledInput = styled.input<InputProps>(props => ({  background: color(), // !!! NEED error from props}));不工作- css 对象const StyledInput = styled.input<InputProps>(props => ({  background: `${({ error }) => color(error)}`,}));
查看完整描述

1 回答

?
慕妹3146593

TA贡献1820条经验 获得超9个赞

要解决道具提取问题,您应该能够这样做:


// Simple color function

const color = (error) => {

  if (error) {

    return 'red';

  }

  return 'black';

};


const StyledInput = styled.input<InputProps>(({ error, ...props }) => ({

  background: color(error),

}));


查看完整回答
反对 回复 2022-06-09
  • 1 回答
  • 0 关注
  • 132 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信