从现在开始,我们要努力学习啦!今天我给大家带来《sqlx 无法对嵌套结构使用结构扫描》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!
问题内容我有不同类型的 rest api,它们有一些共同点:
- 所有类型都有id
- 所有类型都有类型
- 所有类型都有属性,但属性不同
由于我不想拥有大量不必要的类型,因此我想出了一种类型格式,但 sqlx 似乎无法扫描该格式。
type pool struct {
id *string `json:"id" db:"pool_id"`
type *string `json:"type"`
attributes struct {
name *string `json:"name" db:"name"`
description *string `json:"description" db:"description"`
} `json:"attributes"`
}
type user struct {
id *string `json:"id" db:"user_id"`
type *string `json:"type"`
attributes struct {
firstname *string `json:"first_name" db:"first_name"`
lastname *string `json:"last_name" db:"last_name"`
} `json:"attributes"`
}
当尝试将 sql 结果加载到变量中时,出现错误:missing destination name name in *main.pool
package main
import (
_ "github.com/jmoiron/sqlx"
)
func selectOne() interface{} {
pa := Pool{}
err := dbx.Get(&pa, "SELECT * FROM pools LIMIT 1")
if err != nil {
panic(err)
}
return pa
}
由于名称存在,我不明白为什么这不起作用。非常感谢任何有关如何解决此问题的建议!
解决方案
package main
import (
_ "github.com/jmoiron/sqlx"
)
func selectOne() interface{} {
pa := Pool{}
err := dbx.Get(&pa, `SELECT p.id, p.type, a.name AS "attributes.name" FROM pools p left join attributes a on a.p LIMIT 1`)
if err != nil {
panic(err)
}
return pa
}
以上就是《sqlx 无法对嵌套结构使用结构扫描》的详细内容,更多关于的资料请关注编程网公众号!