修改密码

请输入密码
请输入密码 请输入8-64长度密码 和 email 地址不相同 至少包括数字、大写字母、小写字母、半角符号中的 3 个
请输入密码
提交

修改昵称

当前昵称:
提交

申请证书

证书详情

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

服务器的MAC地址

Please complete this required field.

Please complete this required field.

取消
申请
ID
产品
状态
核数
申请天数
审批时间
过期时间
MAC地址
申请理由
审核信息
关闭
基础信息
  • 用户昵称:
  • 手机号:
  • 公司名称:
  • 公司邮箱:
  • 地区:
  • 语言:
修改密码
申请证书

当前未申请证书.

申请证书
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

ProductName CreateTime ID Price File
ProductName CreateTime ID Price File

No Invoice

为什么用({!name})找不到值为空的字符串属性

回答此问题
未解决
wanyisun2022-04-19

属性level是整型,用下面的语句可以找到level为0的数据:

find().nodes({ !level }) as nodes return nodes


但是,属性name是字符串,用类似的语句返回的却是所有数据,而不是name为空的数据:

find().nodes({ !name }) as nodes return nodes


这是为什么呢?

过滤器filter真值判断

1 个回答

  • 0 点赞

    您使用的过滤条件 { !<property>} 属于不含条件操作符的表达式,在当前的 Ultipa 版本中仅支持数值型和日期型的判断,即:

    <number> 为零时判断为假,为非零时判断为真;

    <date> 为 '0-0-0 0:0:0' 时判断为假,为非 '0-0-0 0:0:0' 时判断为真;

    判断字符串是否为空请使用条件判断符 ==:

    find().nodes({ name == “” }) as nodes 
    return nodes


    Ultipa Admin 2022-04-20
    添加评论...

    取消
    提交

你的回答:

提交
取消