我使用Go lang和数据存储区作为数据库,我必须通过后端(即BY API)在UI表上应用搜索。所以我浏览了文档,发现数据存储区中没有LIKE OPERATOR。我也用正则表达式搜索,但也不支持。
不过,我想这样做,请帮助我这些家伙,我真的很需要
// Here ParcelKind is the table name
var name string
name ="s"
q:= datastore.NewQuery(ParcelKind).Filter("Name", name%)
试试这个q:= datastore.NewQuery(ParcelKind).Filter(“Name> =”,name%)