级联下拉列表

发布于 2024-08-31 14:48:39 字数 255 浏览 3 评论 0原文

我正在开发一个网络应用程序,并尝试编写一个带有两个下拉列表的表单。第二个下拉列表中的列表将取决于第一个下拉列表中的选择。任务本身并不太复杂,只是一旦做出第一个选择,我需要进行数据库调用来提取第二个下拉列表的数据。这就是我遇到困难的地方。这两个列表实际上都是从数据库中填充的。

我正在 python 脚本中处理此问题,并一直尝试使用 onChange javascript 函数来完成此操作。 Web 应用程序是在 Zope 中构建的,页面模板可能是 python 脚本的一个选项。

I am working on a web app and trying to code a form with two dropdown lists. The list in the second dropdown will be dependent on the selection from the first one. The task itself isn’t too complicated except that once the first selection is made, I need to make a database call to pull the data for the second dropdown. This is where I am having difficulty. Both lists are in fact populated from a database.

I am working on this in a python script and have been trying to do this w/ an onChange javascript function. The web app is built in Zope and page templates may be an option along w/ the python scripts.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疑心病 2024-09-07 14:48:39

这里你必须结合使用 Ajax 和 javascript。选择下拉列表的 Onchange 事件调用 JavaScript 函数。这个 javascript 函数将向 python 脚本发出 ajax 请求,该脚本实际上会命中数据库并在 javascript 变量中返回响应。使用这个 javascript 变量,您可以编辑 DOM 并设置第二个选择框的 html。

看看你是否能从中得到一些提示:
http://www.satya-weblog。 com/2007/04/dynamically-populate-select-list-by.html

you will have to use a combination of Ajax and javascript here. Onchange event of your select drop down call a javascript function. This javascript function will make a ajax request to a python script that will actually make a database hit and return you a response in a javascript variable. With this javascript variable you can edit you DOM and set the html of second select box.

see if u can get some hint from this:
http://www.satya-weblog.com/2007/04/dynamically-populate-select-list-by.html

风铃鹿 2024-09-07 14:48:39

我就是这么做的。下面是我想出的 JavaScript 函数。 OnChange,我调用 getOptions 并且 pythonScript 创建第二个下拉列表。我可以传入一个参数来获取此下拉列表所需的数据。谢谢!

  function getOptions() {
    var code = 'code=' + $("dropdown1").getValue();
    var myAjax = new Ajax.Updater('dropdown2', './pythonScript', { method: 'get', parameters: code });
  }

That's exactly what I did. Below is the javascript function I came up with. OnChange, I call getOptions and the pythonScript creates the second dropdown list. I am able to pass in a parameter to get the data I need for this dropdown. Thanks!

  function getOptions() {
    var code = 'code=' + $("dropdown1").getValue();
    var myAjax = new Ajax.Updater('dropdown2', './pythonScript', { method: 'get', parameters: code });
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文