📜  如何使垫子自动完成以显示名称而不是值 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:50.951000             🧑  作者: Mango

代码示例2
onShopSelectionChanged(event) {
    const selectedValue = event.option.id;
    console.log(selectedValue);
    const selectedName = event.option.value;
    console.log(selectedName);
}