办公室 ui Fabric People Picker,将变量传递给 onChange 事件
Office ui Fabric People Picker, pass varaibles to onChangeEvent
我想知道是否可以将变量添加到 office ui fabric react People Picker 组件的默认 onchange 事件中。
在onchange事件中默认是onChange?: (items?: IPersonaProps[]) => void
我想传递一个变量以添加到像键值这样的数组中,以便稍后在我的代码中使用。
您可以构建一个 HOC 来实现这一点。
定义
// Your HOC component
interface Props {
yourCustomState: string // get custom value from props
...
return (
<>
<Select
onChange={(e: any) => onChange(e, yourCustomState)} // add custom value to callBack function
...
用法
handleOnChangeEvent = () => (event, yourCustomStateValue: string) => {
console.log(yourCustomStateValue);
... // event
}
<YourComponent
yourCustomState={value}
onChange={this.handleOnChangeEvent()}
...
我想知道是否可以将变量添加到 office ui fabric react People Picker 组件的默认 onchange 事件中。
在onchange事件中默认是onChange?: (items?: IPersonaProps[]) => void
我想传递一个变量以添加到像键值这样的数组中,以便稍后在我的代码中使用。
您可以构建一个 HOC 来实现这一点。
定义
// Your HOC component
interface Props {
yourCustomState: string // get custom value from props
...
return (
<>
<Select
onChange={(e: any) => onChange(e, yourCustomState)} // add custom value to callBack function
...
用法
handleOnChangeEvent = () => (event, yourCustomStateValue: string) => {
console.log(yourCustomStateValue);
... // event
}
<YourComponent
yourCustomState={value}
onChange={this.handleOnChangeEvent()}
...