Go言語を使用してデータストアにエンティティを追加します。すべてのエンティティをクエリできますが、キーごとにエンティティを取得する方法、エンティティのキーを取得する方法、および次のようにキーごとにクエリを実行する方法:select * from Blog where key =?
c := appengine.NewContext(r)
g := Blog{
Title: r.FormValue("title"),
Content: r.FormValue("content"),
}
_, err := datastore.Put(c, datastore.NewIncompleteKey(c, "Blog", nil), &g)
ありがとう