首页 > 解决方案 > ui-material rating 不要点击值

问题描述

点击带有数值的星星的 onChange 方法不起作用。在我的例子中是 4。为什么?我怎样才能改变它? https://material-ui.com/components/rating/

在此处输入图像描述

   <Rating
      name="hover-tooltip"
      value={4}
      precision={0.5}
      IconContainerComponent={IconContainer}
      onChange={(event, newValue) => {
        console.log(444) // when click on star number four this method don't work
        // this.setState({value: newValue})
        // this.props.onRating(newValue);
      }}
      disabled={false}
    />

标签: javascriptreactjsmaterial-ui

解决方案


推荐阅读