英文:
Query for non empty string property?
问题
有没有办法查询Datastore中特定属性不为空字符串的实体?
我不是指缺少属性。我真正指的是非空字符串。
英文:
Is there any way to query Datastore for entities where a specific property should not be the empty string?
I'm not referring to missing properties. I really mean non empty strings.
答案1
得分: 5
通过使用过滤器,您可以指定属性的值大于""(空字符串)。我不使用Go语言,所以无法保证它是否有效,但在其他语言中,这个技巧通常是有效的...
q := datastore.NewQuery("Example").Filter("Property >", "")
英文:
By using filters you can specify that value of the property is greater than "" (empty string). I don't use Go so I can't guarantee if it'll work but in other languages this trick usually works...
q := datastore.NewQuery("Example").Filter("Property >", "")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论