baidu / amis

前端低代码框架,通过 JSON 配置就能生成各种页面。
https://baidu.github.io/amis/
Apache License 2.0
16.47k stars 2.4k forks source link

input-text选择器模式+多选模式在删除内容时触发不了change事件 #10529

Open yywx1220 opened 4 days ago

yywx1220 commented 4 days ago

实现场景:

input-text选择器模式+多选模式,在删除某项内容时需要获取输入框中删除后的值

存在的问题:

删除输入框内容时没有触发change事件

当前方案:

{ "type": "page", "body": { "type": "form", "debug": true, "body": [ { "name": "text", "type": "input-text", "label": "text", "multiple": true, "options": [ { "label": "aa", "value": "aa" }, { "label": "bb", "value": "bb" } ], "onEvent": { "change": { "actions": [ { "actionType": "toast", "args": { "msg": "${event.data.value|json}" } } ] } } } ] } }

code here...