mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-05 05:28:37 +08:00
xxxOn 限制为字符串类型时才执行
This commit is contained in:
parent
4b2cb76372
commit
93214440cd
@ -31,7 +31,7 @@ export default function getExprProperties(schema:PlainObject, data:object = {},
|
|||||||
let parts = /^(.*)(On|Expr)$/.exec(key);
|
let parts = /^(.*)(On|Expr)$/.exec(key);
|
||||||
let value:any = schema[key];
|
let value:any = schema[key];
|
||||||
|
|
||||||
if (value && parts && (parts[2] === 'On' || parts[2] === 'Expr')) {
|
if (value && typeof value === 'string' && parts && (parts[2] === 'On' || parts[2] === 'Expr')) {
|
||||||
key = parts[1];
|
key = parts[1];
|
||||||
|
|
||||||
if (parts[2] === 'On' || parts[2] === 'Expr') {
|
if (parts[2] === 'On' || parts[2] === 'Expr') {
|
||||||
|
Loading…
Reference in New Issue
Block a user