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 ue5运行的通道视频都会有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数