第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 Golang 中導(dǎo)入本地包

如何在 Golang 中導(dǎo)入本地包

Go
暮色呼如 2022-10-17 16:00:38
我有個(gè)問(wèn)題。我無(wú)法在我的應(yīng)用程序中導(dǎo)入本地包。type Post struct {    URL     string `json:"url,omitempty"`    Caption string `json:"caption,omitempty"`    Likes   []User `json:"likes,omitempty"` // Can not import User from package user}type User struct {    Name       string `json:"name,omitempty"`    Password   string `json:"password,omitempty"`    Followers  []User `json:"followers,omitempty"`    Followings []User `json:"followings,omitempty"`}
查看完整描述

1 回答

?
慕沐林林

TA貢獻(xiàn)2016條經(jīng)驗(yàn) 獲得超9個(gè)贊

我為您的場(chǎng)景創(chuàng)建了一個(gè)示例結(jié)構(gòu),如下所示:


假設(shè)項(xiàng)目結(jié)構(gòu)如下所示:


project-villa/      //Name of your Project


    model/

    -user.go    //this file will contain your User Structure

    repository/

    -post.go   //this file will hold your Post structure and the rest piece of code

    handler/

    driver/

    main.go

Step1:- 初始化模塊


go mod init project-villa

或者


go mod init github.com/user-name/project-villa

mod 將管理模塊依賴本身。無(wú)論如何,如果沒(méi)有,您可以顯式導(dǎo)入它。它看起來(lái)像這樣:


github.com/random/project-villa/models





 type Post struct {

    URL     string `json:"url,omitempty"`

    Caption string `json:"caption,omitempty"`

    Likes   []models.User `json:"likes,omitempty"` //you can use it like this

}

作為參考,您可以按照官方 go dev 的鏈接。在這里你會(huì)得到Importing packages from your module.


查看完整回答
反對(duì) 回復(fù) 2022-10-17
  • 1 回答
  • 0 關(guān)注
  • 173 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)