我试图在使用MongoDB库创建的windows窗体表中显示来自PySimpleGui数据库的数据。以下代码来自pySimpleGUI演示程序demo_test_element.py。
传递给成功地在表中显示数据的代码的数据如下所示:
[“狗”、“包”、“牛”、“群”]
在第二个示例中,数据被检索到游标中,然后放入列表中。在显示表时,我得到一个TypeError:只能连接列表(而不是"dict")来列出。当我打印列表的类型时,它被描述为,而不是字典。列表中数据的格式与示例程序中的格式不同。看起来是这样的:
{'_id':ObjectId('5f511b8a5d174ea26fbe2c64')、“名称”:“狗”、“集体”:'Pack'}、{'_id':ObjectId('5f511b8a5d174ea26fbe2c65')、“名称”:‘牛’、‘集体’:‘兽群’}
所以,我想我会尝试改变列表的格式,使之与成功的版本相同。我可以做到:
[“狗”、“包”、“牛”、“牛群”]如果没有双引号,它就会遵循成功的模式。在试图显示表中的数据时,错误是TypeError:只能连接列表(而不是"str")来列出。
我对Python等还不熟悉,我可能做错了这件事。我更喜欢pySimpleGUI而不是Tkinter,因为我发现它更简单,但是我很乐意接受使用不同GUI库的建议。我习惯于使用关系数据库管理系统(主要是甲骨文),我选择MongoDB作为一个挑战,同样,我没有完全依附于它。
我试着使这个问题的代码尽可能简洁。
from pymongo import MongoClient
import PySimpleGUI as sg
# Display the data in a table
def windowStuff(data):
headings = ["Animal","Collective"]
layout = [[sg.Table(values=data[0:][:], headings=headings, max_col_width=25, display_row_numbers=True, num_rows=4, alternating_row_color='red',
key='-TABLE-', row_height=35)]]
window = sg.Window('The Animals', layout,)
while True:
event, values = window.read()
if event == sg.WIN_CLOSED:
break
window.close()
sg.theme('Black')
data = [["Dog", "Pack"],["Cattle","Herd"]]
try:
windowStuff(data)
# This works
except Exception:
pass
# Insert and return data into Mongo Database
client = MongoClient('mongodb://localhost:27017/')
db = client.testdb
db.colCreatures.drop()
docCreatures = [ {'name': 'Dog', 'collective': 'Pack'}, {'name': 'Cattle', 'collective': 'Herd'}]
db.colCreatures.insert_many(docCreatures)
curCreatures = db.colCreatures.find()
#Call the function to display the table with data, using a LIST
listCreatures = list(curCreatures)
try:
windowStuff(listCreatures)
except Exception:
# Error is File "..... \PySimpleGUI.py", line 11646, in PackFormIntoFrame
# value = [i + element.StartingRowNumber] + value
# TypeError: can only concatenate list (not "dict") to list
pass
#Call the function to display the table after the list has been manipulated
data =[]
for creature in listCreatures:
strCreature = ('[{0} {1}'.format(creature['name'] +',', creature['collective'] + ']'))
strCreature = strCreature.replace('[', '[' + "'")
strCreature = strCreature.replace(']' , "'" + ']')
strCreature = strCreature.replace(', ', "'" + ',' + "'")
data.append(strCreature)
try:
windowStuff(data)
except Exception:
# Error is File "....\PySimpleGUI.py", line 11646, in PackFormIntoFrame
# value = [i + element.StartingRowNumber] + value
# TypeError: can only concatenate list (not "str") to list
pass
发布于 2020-09-03 10:37:29
你的想法,迭代的生物和建立一个新的名单是正确的。别造出那根奇怪的绳子。
data = []
for creature in listCreatures:
data.append([creature["name"], creature["collective"]])
https://stackoverflow.com/questions/63729060
复制相似问题