php小编鱼仔今天为大家介绍一种使用Golang和supabase在Postgres数据库上链接多个过滤器的方法。在开发过程中,我们经常需要对数据库进行查询和筛选,而多个过滤器的组合使用可以更加灵活地满足我们的需求。通过结合Golang编程语言和supabase数据库服务,我们可以轻松实现这一目标。本文将为您详细解析具体的实现方法,帮助您更好地应用于实际项目中。
所以我有一个 supabase postgres 数据库设置,并且我正在尝试使用 gin 为该数据库设置 API。我正在使用 nedpals/supabase-go 连接到我的 supabase 客户端。我正在尝试根据请求参数链接多个过滤器,如下所示:
func GetCardsByAdvanceSearch(supabase *supa.Client) gin.HandlerFunc { fn := func(context *gin.Context) { sets, isSets := context.GetQueryArray("setCode") colors, isColors := context.GetQueryArray("color") var results []any err := supabase.DB.From("cards").Select("*").Execute(&results) if(isColors) { results.In("colors", colors)} if(isSets) { results.In("set_code", sets)} if err != nil { panic(err) } context.JSON(http.StatusOK, gin.H{ "Results": results, }) } return gin.HandlerFunc(fn) }
这基于允许多个“In”过滤器的 Supabase JS 文档。但是当我尝试这样做时,我不断收到错误,其中 results.In undefined (type []any has no field or method In)
基本上 In
不是结果的适用方法,即使它应该基于文档。 p>
请帮忙哈哈
您当前的代码实际上正在执行以下操作:
var results []any results.In("colors", colors)
results
是一个切片,因此,正如错误所述,“没有字段或方法 In”。
In
需要运行在执行查询之前针对过滤器;类似以下内容(未经测试!):
srb := supabase.DB.From("cards").Select("*") if(isColors) {srb.In("colors", colors)} if(isSets) {srb.In("set_code", sets)} var results []any err := srb.Execute(&results)
以上是如何使用 Golang 和 supabase 在 Postgres 数据库上链接多个过滤器?的详细内容。更多信息请关注PHP中文网其他相关文章!