amis icon indicating copy to clipboard operation
amis copied to clipboard

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

Open yywx1220 opened this issue 1 year ago • 1 comments

实现场景:

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...

yywx1220 avatar Jun 26 '24 12:06 yywx1220

@yywx1220 新版本用你给的 schema 没有复现,貌似已经修复

ShupingHe avatar Aug 01 '24 01:08 ShupingHe