I am using PeoplePicker from pnp/spfx for picking people names in order to avoid some spelling mistake. So in order to filter the results in REST Call ajax. The value from PeoplePicker needs to be stored like we have in other API property with name value={this.state.somevariable}. So how will I be able to do that ?

有帮助吗?

解决方案

You can get the selected users through onChange property:

enter image description here

In the above method, you can store the values in state or somewhere then use it in another rest API call.

许可以下: CC-BY-SA归因
scroll top