像运算子一样在Google Cloud Datastore中的列上进行搜索的另一种方式

时间:2019-02-12 06:07:02

标签: go google-cloud-datastore

我正在将Go lang与数据存储区用作数据库,我必须通过后端在UI表上应用搜索(即BY API)。因此,我浏览了文档,发现数据存储区中不支持LIKE OPERATOR。我也使用正则表达式进行搜索,但这也不被支持。

还是,我想这样做,请这些家伙帮帮我,我真的很需要

// Here ParcelKind is the table name

var name string

name ="s"

q:= datastore.NewQuery(ParcelKind).Filter("Name", name%)

1 个答案:

答案 0 :(得分:0)

尝试一下 q:= datastore.NewQuery(ParcelKind).Filter(“ Name> =”,name%)