duanrou5680 2014-05-06 16:56
浏览 9
已采纳

如何使用Go将密钥存储在数据存储对象中?

I'm trying to put a *Key of a Location

type Location struct 
    City, State, Country string
}

in a Band

type Band struct {
    Name string
    LocationId *datastore.Key
    Albums []Album
}

When I first create a Location, add the key, then try to retrieve the Location values, the strings all come out empty. If I then add a new Band, the location I created shows up fine, and using that location in a new Band works. I'm using incomplete keys:

func AddLocation(value Location, rq *http.Request) (*datastore.Key, error) {
    c := appengine.NewContext(rq)
    key := datastore.NewIncompleteKey(c, config.LOCATION_TYPE, nil)
    _, err := datastore.Put(c, key, &value)

    return key, err
}

Using an existing Location is as follows:

case "existing":
    rawId := rq.FormValue("location_id")
    q := strings.Split(rawId, ",")
    x := q[1]
    id_int, e := strconv.ParseInt(x, 10, 64)
    if e != nil {
        message = e.Error()
    }
    locationId = datastore.NewKey(c, config.LOCATION_TYPE, "", id_int, nil)
    //  message = "not implemented yet"
    break

Using the key from the original Put didn't seem to work, so I resorted to:

case "new":
    location := model.Location{rq.FormValue("city"), rq.FormValue("state"), rq.FormValue("country")}
    var err error
    _, err = model.AddLocation(location, rq)
    if err != nil {
        message = "Location add: " + err.Error()
    }
    q := datastore.NewQuery(config.LOCATION_TYPE).Filter("City =", location.City).
        Filter("State =", location.State).Filter("Country =", location.Country).
        KeysOnly()
    keys, err := q.GetAll(c, nil)
    if err != nil {
    message = "Location add: " + err.Error()
    }
    var k *datastore.Key
    for _, key := range keys {
        k = key
        break
    }
    locationId = k
    break

And that didn't work right either. What am I not getting?

  • 写回答

1条回答 默认 最新

  • duanchuang6978 2014-05-08 00:10
    关注

    When you call datastore.Put with an incomplete key, the key's id is not filled in. The returned key has it. You're ignoring the return value from datastore.Put with _.

    Your AddLocation func should look like this:

    func AddLocation(value Location, rq *http.Request) (*datastore.Key, error) {
        c := appengine.NewContext(rq)
        key := datastore.NewIncompleteKey(c, config.LOCATION_TYPE, nil)
        // this line updates the key with accurate information
        key, err := datastore.Put(c, key, &value)
    
        return key, err
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 如何通过代码传输视频到亚马逊平台
  • ¥15 php查询mysql数据库并显示至下拉列表中
  • ¥15 freertos下使用外部中断失效
  • ¥15 输入的char字符转为int类型,不是对应的ascall码,如何才能使之转换为对应ascall码?或者使输入的char字符可以正常与其他字符比较?
  • ¥15 devserver配置完 启动服务 无法访问static上的资源
  • ¥15 解决websocket跟c#客户端通信
  • ¥30 Python调用dll文件输出Nan重置dll状态
  • ¥15 浮动div的高度控制问题。
  • ¥66 换电脑后应用程序报错
  • ¥50 array数据同步问题