![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
bee-autocomplete
Advanced tools
react bee-auto-complete component for tinper-bee
根据用户的输入,进行自动匹配显示列表,用户可以进行按需选择自己需要的内容在输入框展示
class Demo1 extends Component {
constructor(props) {
super(props);
this.state = {
value: "",
options: ['10000(博宇)', '10001(波波)', '10002(李刚)'],
placeholder: "查找关键字,请输入1",
disabled: false
}
this.onFormChange = this.onFormChange.bind(this);
}
onFormChange(value) {
this.setState({
value: value
})
}
render() {
let { value, options, placeholder,disabled} = this.state;
return (
<div className="demo" style={{ "marginBottom": "90px" }}>
<AutoComplete
value={value}
disabled={disabled}
options={options}
placeholder={placeholder}
onValueChange={value => this.onFormChange(value)}
/>
</div>
)
}
}
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
value | 传入的输入框的值 | any | - |
options | 自动匹配列表 | array | [] |
placeholder | 输入框的默认提示 | string | - |
show | 控制自动匹配列表的展开和隐藏 | boolean | false |
disabled | 是否禁用输入框 | boolean | false |
onChange | 输入框值更改时触发的回调函数 | function | - |
onValueChange | 输入框值更改时触发的回调函数 | function | - |
onKeyDown | 监听input的键盘事件,调用此函数 | handleKeyDown() | - |
onBlur | input 的失去焦点时,调用此函数 | function | - |
onSelectOption | 被选中时调用,参数为选中项的 value 值 | function | - |
$ npm install -g bee-tools
$ git clone https://github.com/tinper-bee/bee-auto-complete
$ cd bee-auto-complete
$ npm install
$ npm run dev
FAQs
AutoComplete ui component for react
The npm package bee-autocomplete receives a total of 23 weekly downloads. As such, bee-autocomplete popularity was classified as not popular.
We found that bee-autocomplete demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.