使用 Pygtk 和 Python 从多个文本输入中获取值
单击名为“添加文本框”的按钮时,它会调用一个函数,该函数使用 (gtk.Entry) 函数创建单个文本框。因此,每次我单击该按钮时,它都会创建一个文本框。
我有一个提交按钮,它应该获取以“entry”名称生成的文本框(例如 10 个文本框)的所有值。它适用于一个文本框,但不适用于多个文本框。
在 php 中,我们可以创建 dynamix 文本框,并以数组 name=entry[] 的形式提及。
我们在 python 中是否有类似的功能?
环境:FC10、Glade 3、Python 2.5、GTK。
On a click of a button named "Add Textbox" it calls a function which creates a single textbox using (gtk.Entry) function. So each time i click that button it creates a textbox.
I have a submit button which should fetches all the values of the text boxes(say 10 textboxes) generated with the name of "entry". It works for one textbox but not for multiple.
In php we can create dynamix textboxes mentioning as an array name=entry[].
Do we have similar functionality in python ?
Enviroment : FC10 , Glade 3 , Python 2.5 , GTK.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可能会更清楚一点,创建 GtkEntry 后你用它做什么并不明显。最简单的方法是将其添加到 Python 列表中,这样您就可以稍后遍历所有创建的 GtkEntry 小部件。
或者,您可以用某些东西“标记”小部件以使它们可识别,并迭代包含的小部件(假设您确实将小部件添加到窗口或其他东西)。
You could be a bit clearer, it's not obvious what you do with your GtkEntry after creating it. The easiest thing would be to just add it to a Python list, so you can iterate over all created GtkEntry widgets later.
Or, you could "tag" the widgets with something to make them identifiable, and iterate over the containing widgets (assuming you really do add the widget to a window or something).