道具'aria-activedescendant`不匹配。反应-选择

时间:2017-12-19 05:30:12

标签: javascript reactjs frontend react-select

我最近使用react-select,它给我一个错误:

fit('should register new user', fakeAsync(() => { let result:any; appService.signUp('examplesignup') .subscribe( res => { result = res; expect(result.account[0].username).toBe("nandini"); }) })) aria-activedescendant Prop

我只是将示例复制并粘贴到github页面中,除了此错误警告外,其工作正常。

这是我的代码

did not match

1 个答案:

答案 0 :(得分:1)

在查看源代码之后,我发现如果你没有传递prop instanceId react-select会生成一个新的。所以,为了摆脱警告传递道具。

<Select
   name={this.props.name}
   instanceId={this.props.name}
   value={this.state.selectedOption}
   onChange={this.handleChange}
   options={[
     { value: 'one', label: 'One' },
     { value: 'two', label: 'Two' },
   ]}
 />