- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的项目中有以下模型和各自的方法:
class Users(ndb.Expando):
"""
flefu users, identified by email.
user_gender --> 0 = male; 1 = female; 2 = other; 3 = unknown
"""
join_date = ndb.DateTimeProperty(auto_now_add=True)
user_name = ndb.StringProperty(required=True)
user_email = ndb.StringProperty(required=True)
class UsersPhotos(ndb.Model):
"""
property to processes a blob upload steps
Users child.
"""
upload_date = ndb.DateTimeProperty(auto_now_add=True)
photo_key = ndb.BlobKeyProperty(required=True)
photo_serving_url = ndb.StringProperty(required=True)
@classmethod
def insert_from_form(cls, data):
user_key = ndb.Key(Users, data.userId)
photo_details = cls(
parent=user_key,
user=user_key,
photo_key=data.photoKey,
photo_serving_url=data.photoServingUrl
)
photo_details.put()
photo_details.status = "200"
photo_details.parent = user_key.id()
return photo_details
@classmethod
def get_photos_by_users(cls, data):
users = Users.query().fetch(20)
for user in users:
logging.info(str(user.key))
photo_data = cls.query(ancestor=user.key).fetch()
logging.info(str(photo_data))
photos = cls.query().fetch(10)
logging.info(str(photos))
我不确定为什么 photo_data 查询总是返回空列表。开发应用引擎服务(本地)和托管应用引擎服务(远程)都会返回空列表。
Users 和 UsersPhotos 类型具有以下实体:
用户:
Users(key=Key('Users', 5629499534213120), join_date=datetime.datetime(2014, 7, 26, 4, 40, 11, 840853), user_email=u'user@domain.com', user_name=u'hidden')
用户照片:
[
UsersPhotos(key=Key('Users', '5629499534213120', 'UsersPhotos', 6192449487634432), photo_key=datastore_types.BlobKey('encoded_gs_file:YXBwX2RlZmF1bHRfYnVja2V0L2Zha2UtdzZSYkpZS1RnTlpkY3JKRVI3dUU2UT09'), photo_serving_url=u'http://127.0.0.1:8080/_ah/img/encoded_gs_file:YXBwX2RlZmF1bHRfYnVja2V0L2Zha2UtdzZSYkpZS1RnTlpkY3JKRVI3dUU2UT09=s300', upload_date=datetime.datetime(2014, 7, 26, 4, 40, 35, 455648)),
UsersPhotos(key=Key('Users', '5629499534213120', 'UsersPhotos', 6473924464345088), photo_key=datastore_types.BlobKey('encoded_gs_file:YXBwX2RlZmF1bHRfYnVja2V0L2Zha2UtcmZiYU5WNEFSVnZheG81aGQ5dXpNdz09'), photo_serving_url=u'http://127.0.0.1:8080/_ah/img/encoded_gs_file:YXBwX2RlZmF1bHRfYnVja2V0L2Zha2UtcmZiYU5WNEFSVnZheG81aGQ5dXpNdz09=s300', upload_date=datetime.datetime(2014, 7, 26, 4, 41, 12, 322560))
]
有人能指出我正确的方向吗?
最佳答案
您正在混合字符串和 int id:您的 Users 实体有一个 int id,但 UsersPhotos 父级的 ID 部分是一个字符串。
当您在 insert_from_form 方法中创建 user_key 时,您应该转换该值:
user_key = ndb.Key(Users, int(data.userId))
关于python - 祖先的 NDB 查询返回的不是实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24971853/
我正在尝试构建一个页面大小三分之一的容器,但我收到错误 No MediaQuery ancestor could be found starting from the context that was
给定包含数据的表T_Person(姓名,父级) +--------+--------+| name | parent |+--------+--------+| john | peter |
假设输入 XML 为 Test Me 我想找到 title 和 author 的最低共同祖先。我在 BaseX 中尝试了以下代码: let $p := doc('t.xq
给定表 T_Person(姓名, parent ) 包含数据 +--------+--------+| name | parent |+--------+--------+| john | p
我在leetcode中找到了java中最低公共(public)祖先问题的解决方案。换句话说,问题是找到 p 和 q 的最低共同祖先,并且 BST 的根为根。这是我的代码。 public TreeNod
我知道如果这两个节点必须在二叉树中如何解决问题,但是如果它们不必在树中怎么办?如果树中只有一个或没有这些节点,则返回 None。 这是我的代码: # Definition for a binary t
我在 stackoverflow 上查看了很多其他答案,但找不到任何有效的东西,我要么得到根,要么返回 node1 本身,我不知道如何递归地执行此操作,并且已经尝试了很多次一切都以同样的方式结束。任何
如果所有元素都不同,则很容易在 BST 中找到最近的共同祖先。但是,如果某些值相同怎么办。到目前为止,我们只是比较节点的数据,仅此而已,但现在我们是否需要检查节点的地址而不仅仅是值? 最佳答案 是的,
问题:给定一个二叉搜索树 (BST),找到 BST 中两个给定节点的最低公共(public)祖先 (LCA)。 根据维基百科上 LCA 的定义:“最低公共(public)祖先定义在两个节点 v 和 w
我正在尝试通过自上而下的递归来解决二叉树的最低公共(public)祖先(LCA)问题。 我使用的方法是: IDEA: Find the node which has one of the desire
我被这个问题绊倒了。以下是我的做法: Lets say the two nodes are node1 and node2 For any node (lets say node1), find th
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
只是想知道以下算法在二叉搜索树中查找两个节点的最低公共(public)祖先的效率如何。 Node getLowestCommonAncestor (Node root, Node a, Node b)
如果我知道树中每个节点的邻接列表,那么如何找出该树中存在的任意两个节点的最低公共(public)祖先? 其实我想找出任意两个节点之间的距离,所以我想计算 LCA。有没有办法从邻接表中计算出来? T 中
这里的二叉树不一定是二叉搜索树。 该结构可以视为 - struct node { int data; struct node *left; struct node *right
以下是我对二叉搜索树的最低公共(public)祖先的实现。我有两个问题: 1) 时间复杂度为 O(n),空间复杂度为 O(n) 最坏情况,但如果 BST 平衡,时间和空间的平均情况为 O(logn)。
这是一个很受欢迎的面试问题,我能找到的关于该主题的唯一一篇文章来自 TopCoder .不幸的是,从面试答案的角度来看,它看起来过于复杂。 除了绘制到两个节点的路径并推导祖先之外,是否有更简单的方法来
我在面试中被问到这个问题,虽然我知道如何解决这个问题,但我没有回答。我不知道该怎么做的原因是因为问题是这样给我的: class Node{ int val; Node *lef
我正在尝试提出获取上下文项的所有祖先的解决方案。一种选择是将 _path 存储在索引中,另一种选择是执行类似于以下操作的操作: http://www.glass.lu/Blog/GettingAnce
我正在尝试用java实现n叉树中多个节点的LCA。我正在处理句子的解析树,因此假设节点的子节点数 <= 6 是合理的。这里的多个节点是句子中的两个短语(连续单词序列)。令 k 为涉及的节点数。 一种方
我是一名优秀的程序员,十分优秀!