英文:
Go datastore query for getting a single entity?
问题
Datastore API reference for Go中有一个GetAll函数,它返回一个实体切片。难道没有一个方法只返回找到的第一个实体,而不是一个列表吗?
英文:
The Datastore API reference for Go has a GetAll function that returns a slice of entities. Isn't there a method that just returns the first entity found instead of a list?
答案1
得分: 6
GetAll
执行一个查询,返回与查询条件匹配的所有实体。如果你只想返回一个实体,可以将Limit(limit int)
设置为1。
英文:
GetAll
executes a query that returns all entities that match query conditions. If you want to return just one, set Limit(limit int)
to 1.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论