Plon 和 Mysql 搜索
我让 Mysql 和 Zope 很好地互相交谈。 我可以插入值,甚至可以查看数据库中的一条记录,并将其显示在表单字段中(真的不是那么酷)。
我刚刚学习了教程,但现在我需要搜索数据库并显示结果。
我已经摆弄这个有一段时间了,但还没有走得太远。 我知道使用 Zope 页面模板我们可以调用 Zsql 方法并使用 TAL 显示结果,但我需要了解如何使用脚本和重定向表单搜索表单传递搜索数据。
有人可以帮助我们开始吗?
谁能告诉我一种使用 formgen 和自定义脚本适配器来做到这一点的方法?
I have Mysql and Zope talking to each other nicely.
I can insert values in, and even view one record from the databse and have it show up in the form fields(not that cool really).
I have just been following tutorials, but now I need to search the Database and display the results.
I have been fiddling with this for a while but I haven't gotten far.
I know that using a Zope Page template we can call the Zsql method and show the results with TAL, but I need to some how using a script and a redirect form the search form pass the search data.
Can anyone help we get started?
Can anyone show me a way to do it with formgen and a custom script adapter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
进入您的 ZMI,并在与您的 ZSQL 方法相同的文件夹中添加一个“Z Search Interface”对象。您的 ZSQL 方法应显示为“可搜索对象”。选择您想要的 ZSQL 方法,填写其余字段,它将生成表单和显示页面模板。然后修改模板以适应口味。
Go into your ZMI, and add a "Z Search Interface" object in the same folder as your ZSQL method. Your ZSQL methods should show as "searchable objects". Select the ZSQL method you want, fill in the rest of the fields, and it will generate form and display page templates. Then modify the templates to taste.