dongsigan2636 2017-04-21 01:18
浏览 46
已采纳

GAE / Go:命名空间不起作用

I am trying to store datastore record in namespace MyNameSpace with GAE/Go, but the code below not working.

import (
    "cloud.google.com/go/datastore"
    "github.com/gin-gonic/gin"
    "google.golang.org/appengine"
)

func Save(c *gin.Context, list []MyStruct) ([]MyStruct, error) {
    r := c.Request
    ctx := appengine.NewContext(r)
    ctx_with_namespace, err := appengine.Namespace(ctx, "MyNameSpace")
    if err != nil {
        return nil, err
    }

    client, err := datastore.NewClient(ctx_with_namespace, "MyProject")
    if err != nil {
        return nil, err
    }

    var keyList []*datastore.Key
    for _, v := range list {
        key := datastore.NameKey("MyStruct", v.ColA, nil)
        keyList = append(keyList, key)
    }

    _, err = client.PutMulti(ctx_with_namespace, keyList, list)

    return list,nil
}

This code creates records in the default namespace, not MyNameSpace.

Does cloud.google.com/go/datastore ignores namespace setting?

  • 写回答

1条回答 默认 最新

  • donqo88682 2017-04-21 01:45
    关注

    I found this document

    November 8, 2016

    Breaking changes to datastore: contexts no longer hold namespaces; instead you must set a key's namespace explicitly. Also, key functions have been changed and renamed.

    The WithNamespace function has been removed. To specify a namespace in a Query, use the Query.Namespace method:

    q := datastore.NewQuery("Kind").Namespace("ns")

    All the fields of Key are exported. That means you can construct any Key with a struct literal:

    k := &Key{Kind: "Kind", ID: 37, Namespace: "ns"}

    I realized I should explicitly set namespace, but it is very inconvenient. I migrated to use google.golang.org/appengine/datastore

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?