登录
首页 >  Golang >  Go问答

在 Google App Engine 中使用 Go 时无法插入动态属性

来源:stackoverflow

时间:2024-03-14 10:15:30 492浏览 收藏

今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《在 Google App Engine 中使用 Go 时无法插入动态属性》,主要内容是讲解等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!

问题内容

我正在尝试从这篇文章开始工作 如何在 google 应用引擎数据存储区中拥有动态属性

无法将数据插入数据存储,只是创建 id

import (
    "log"
    "net/http"
    "time"

    "github.com/julienschmidt/httprouter"
    "google.golang.org/appengine"
    "google.golang.org/appengine/datastore"
)

type DynEnt map[string]interface{}

func (d *DynEnt) Load(props []datastore.Property) error {
    // Note: you might want to clear current values from the map or create a new map
    for _, p := range props {
        (*d)[p.Name] = p.Value
    }
    return nil
}

func (d *DynEnt) Save() (props []datastore.Property, err error) {
    for k, v := range *d {
        props = append(props, datastore.Property{Name: k, Value: v})
    }
    return nil, nil
}

//GetAccountHandler is to
func GetAccountHandler(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {

    c := appengine.NewContext(r)

    d := DynEnt{"email": "[email protected]", "time": time.Now()}
    log.Println("d=>", d)
    log.Println("&d=>", &d)
    k := datastore.NewIncompleteKey(c, "DynEntity", nil)
    key, err := datastore.Put(c, k, &d)
    log.Fatalf("%v %v", key, err)

}

解决方案


my original answer 中存在拼写错误,save() 末尾的返回值是复制/粘贴错误(来自通道版本)。正确的版本是:

func (d *DynEnt) Save() (props []datastore.Property, err error) {
    for k, v := range *d {
        props = append(props, datastore.Property{Name: k, Value: v})
    }
    return
}

请注意,在 return 之后没有指定任何值,因为使用了命名结果参数。指定 nil、nil 不会返回 save() 内构建的切片。

此外,您还可以在处理程序末尾调用 log.fatalf() 来终止您的应用程序。尝试使用 log.printf() 代替。

本篇关于《在 Google App Engine 中使用 Go 时无法插入动态属性》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注golang学习网公众号!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>