嘎!我刚刚意识到您的问题是特定于Go的。我下面的代码适用于Python。道歉。我对Go运行时也很熟悉,以后可以将其翻译成Python。但是,如果所描述的原理足以使您朝正确的方向前进,请告诉我,我也不会打扰。AppEngine数据存储区不直接支持此类操作,因此您必须滚动自己的功能来满足此需求。这是一个快速,可行的解决方案:class StringIndex(db.Model): matches = db.StringListProperty() @classmathod def GetMatchesFor(cls, query): found_index = cls.get_by_key_name(query[:3]) if found_index is not None: if query in found_index.matches: # Since we only query on the first the characters, # we have to roll through the result set to find all # of the strings that matach query. We keep the # list sorted, so this is not hard. all_matches = [] looking_at = found_index.matches.index(query) matches_len = len(foundIndex.matches) while start_at < matches_len and found_index.matches[looking_at].startswith(query): all_matches.append(found_index.matches[looking_at]) looking_at += 1 return all_matches return None @classmethod def AddMatch(cls, match) { # We index off of the first 3 characters only index_key = match[:3] index = cls.get_or_insert(index_key, list(match)) if match not in index.matches: # The index entity was not newly created, so # we will have to add the match and save the entity. index.matches.append(match).sort() index.put()要使用此模型,您每次添加可能在其上进行搜索的实体时,都需要调用AddMatch方法。在您的示例中,您有一个Product模型,用户将在上进行搜索Name。在您的Product类中,您可能具有AddNewProduct创建新实体并将其放入数据存储区的方法。您将添加该方法StringIndex.AddMatch(new_product_name)。然后,在从AJAXy搜索框调用的请求处理程序中,您将使用StringIndex.GetMatchesFor(name)来查看所有以中的字符串开头的存储产品name,并以JSON或其他形式返回这些值。代码内部发生的事情是,名称的前三个字符用于包含字符串列表的实体的key_name,所有存储的名称均以这三个字符开头。使用三(相对于其他数字)绝对是任意的。系统的正确数字取决于您索引的数据量。可以存储在StringListProperty中的字符串数量有限制,但是您还想平衡数据存储中StringString实体的数量。进行一点数学运算即可为您提供合理数量的字符。