我如何获得 Office UI Fabric SpinButton 的值
How can i get the value of an Office UI Fabric SpinButton
我需要从 Office UI Fabric SpinButton
获取值
我尝试通过组件引用获取它,但如果我更改状态,旋转按钮将重置为默认值
private SpinPerc: any = React.createRef();
<SpinButton
defaultValue="0"
componentRef={this.SpinPerc}
min={0}
max={100}
step={1}
/>
COSTCENTER_IMPULSE_PERC: this.SpinPerc.current!.value,
此 PR 修复了 SpinButton 不断重置为默认值的问题,因此您现在应该能够毫无问题地获取值。如果它仍然存在,请告诉我们。
我需要从 Office UI Fabric SpinButton
获取值我尝试通过组件引用获取它,但如果我更改状态,旋转按钮将重置为默认值
private SpinPerc: any = React.createRef();
<SpinButton
defaultValue="0"
componentRef={this.SpinPerc}
min={0}
max={100}
step={1}
/>
COSTCENTER_IMPULSE_PERC: this.SpinPerc.current!.value,
此 PR 修复了 SpinButton 不断重置为默认值的问题,因此您现在应该能够毫无问题地获取值。如果它仍然存在,请告诉我们。