gpt4 book ai didi

python - python + Google 应用引擎中的自动完成文本框示例

转载 作者:太空狗 更新时间:2023-10-29 22:20:12 25 4
gpt4 key购买 nike

对于我的 google app engine 应用程序,我需要包含一个自动完成文本框,它将显示以文本框值开头的名称。名称将从 google app engine 数据存储中检索。

请提供任何好的教程或示例代码。

更新:请回答这个问题

我创建了一个示例 HTML 代码:dl.dropbox.com/u/7384181/autocomplete/autocomplete.html .在这个 html 页面中,我动态地创建了文本框。所以目前我只在第一个文本框 (txtProduct1) 中分配自动完成。我如何在所有要动态创建的文本框中分配自动完成功能?

最佳答案

你可以看看 jquery 自动完成 here

HTML :

$("#search_users").autocomplete(/search/search_manager);

python Controller :

jquery 自动完成插件默认使用变量 q

class search_user(webapp.RequestHandler):
q = (self.request.GET['q']).lower()
results=models.user.all().fetch(100)
for records in result:
print records+"|"+records+"\n"

application = webapp.WSGIApplication([
(r'/user_auth/search_manager',search_user)]

def main():
run_wsgi_app(application)

if __name__ == '__main__':
main()

simple:

将自动完成应用于类$

(".search_users").autocomplete(/search/search_manager);

关于python - python + Google 应用引擎中的自动完成文本框示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5935638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com