出于某种原因,当我尝试在 Google Apps 数据存储中存储布尔数据时,它总是存储为 false。
我的实体定义如下所示:
type Link struct {
Name string //Coloquial label for link. Set by original User.
...
isOpen bool //Tells us whether anyone can rewrite the link. Set by original User.
isPerminant bool //Tells us whether link should be saved forever.
isFlagged bool //Tells us whether the content has ever been flagged inappropriate.
}
我创建一个对象并像这样分配值:
//Create Link from form data
l := Link{
Name: r.FormValue("name"),
...
isOpen: r.FormValue("open")=="on",
isPerminant: r.FormValue("perminant")=="on",
isFlagged: r.FormValue("flagged")=="on",
}
我通过运行以下命令来验证数据:
//Put the Link in the datastore
lKey, err := datastore.Put(c, datastore.NewIncompleteKey(c, "Link", nil), &l)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
var newLink Link
if err = datastore.Get(c, lKey, &newLink); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
newLink output value: {[name] ... false false false}
即使我为其中一个 is[...] 属性硬编码为真值,它们仍然是假的!哇哇哇哇哇???