dongqiaochi2711 2019-08-28 04:28
浏览 1091
已采纳

从Go中的函数返回struct

I'm trying to return a struct from one function to another for use with an API. The function is to reduce repeating my code in other places in my API that I am developing.

I'm getting the below error:

cannot use getProjectLocations(params) (type []ProjectLocation) as type []ProjectLocation in assignment

Code below:

func GetProject(w http.ResponseWriter, r *http.Request) {
    params := mux.Vars(r)["uuid"]

    type ProjectLocation struct {
        UUID     string `json:"uuid"`
        Location string `json:"location"`
        Primary  bool   `json:"is_primary"`
    }

    type Project struct {
        UUID           string            `json:"uuid"`
        Owner          null.String       `json:"project_owner"`
        Name           string            `json:"project_name"`
        Locations      []ProjectLocation `json:"locations"`
    }

    q := `SELECT
            p.uuid,
            p.project_owner,
            p.project_name,
            p.project_type,
            p.project_status,
            p.created_date,
            p.created_by,
            p.last_modified,
            p.last_modified_by
        FROM
            projects p
        WHERE p.uuid=$1 LIMIT 1;`

    rows, err := global.DB.Query(q, params)
    global.CheckDbErr(err)

    var project Project
    for rows.Next() {
        err = rows.Scan(
            &project.UUID,
            &project.Owner,
            &project.Name,
        )
        global.CheckDbErr(err)
    }
    project.Locations = getProjectLocations(params)

    rows.Close()
    json.NewEncoder(w).Encode(project)
}


func getProjectLocations(uuid string) []ProjectLocation {

    var Locations []ProjectLocation
    q := `SELECT uuid,location,is_primary FROM project_locations WHERE project_uuid=$1`
    rows, err := global.DB.Query(q, uuid)
    global.CheckDbErr(err)
    for rows.Next() {
        var location ProjectLocation
        err = rows.Scan(
            &location.UUID,
            &location.Location,
            &location.Primary,
        )
        Locations = append(Locations, location)
    }
    return Locations
}

I believe I'm returning a []ProjectLocation struct to the get project function, so I'm just a little confused as a beginner.

  • 写回答

1条回答 默认 最新

  • douba8758 2019-08-28 04:38
    关注
    func GetProject(w http.ResponseWriter, r *http.Request) {
        params := mux.Vars(r)["uuid"]
    
        type ProjectLocation struct {
            UUID     string `json:"uuid"`
            Location string `json:"location"`
            Primary  bool   `json:"is_primary"`
        }
    
        // ...
    }
    
    func getProjectLocations(uuid string) []ProjectLocation {
        // ...
    }
    

    type ProjectLocation is local to func GetProject.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大