隨著Go語言的日益流行,許多開發者在專案中使用Golang進行開發。其中一個重要的問題是如何保存資料。在這篇文章中,我們將討論使用Golang保存資料的不同方法。
JSON是用於資料交換的一種輕量級格式。在Golang中,我們可以使用encoding/json
套件來從結構中將資料編碼為JSON格式的資料。我們也可以使用json.Unmarshal()
方法將JSON解碼為Go結構。
例如,讓我們建立一個結構體並將它編碼為JSON:
type Person struct { Name string `json:"name"` Age int `json:"age"` } func main() { person := Person{Name: "Jack", Age: 25} jsonPerson, _ := json.Marshal(person) fmt.Println(string(jsonPerson)) }
輸出:
{"name":"Jack","age":25}
我們也可以使用json.Unmarshal()
方法將JSON解碼為結構體:
jsonString := `{"name":"Jack","age":25}` person := Person{} json.Unmarshal([]byte(jsonString), &person) fmt.Printf("Name: %s, Age: %d", person.Name, person.Age)
輸出:
Name: Jack, Age: 25
database/sql包,可以用來存取SQL資料庫。我們可以使用這個包來保存和檢索資料。
db, _ := sql.Open("mysql", "user:password@tcp(127.0.0.1:3306)/database") defer db.Close() sqlInsert := `INSERT INTO people (name, age) VALUES (?, ?)` stmt, _ := db.Prepare(sqlInsert) defer stmt.Close() res, _ := stmt.Exec("Jack", 25) id, _ := res.LastInsertId() fmt.Println("Inserted a new person with ID:", id)
database/sql套件來檢索資料。以下是從資料庫中檢索資料的範例:
rows, _ := db.Query("SELECT * FROM people") var name string var age int for rows.Next() { rows.Scan(&id, &name, &age) fmt.Printf("ID: %d, Name: %s, Age: %d\n", id, name, age) }
mgo套件來連接到MongoDB,並保存和檢索資料。
session, _ := mgo.Dial("mongodb://localhost:27017") defer session.Close() c := session.DB("mydb").C("people") err := c.Insert(&Person{Name: "Jack", Age: 25}) if err != nil { log.Fatal(err) }
results := []Person{} err := c.Find(bson.M{}).All(&results) if err != nil { log.Fatal(err) } for _, person := range results { fmt.Printf("Name: %s, Age: %d\n", person.Name, person.Age) }
以上是聊聊使用Golang保存資料的不同方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!