0
我正在使用flask-appbuilder構建應用程序,並且我有一個操作可以運行一個函數,並且我想要使用輸出更新表中的行功能。無法解決如何做到這一點。任何幫助?謝謝如何從Flask-appbuilder和SQLAInterface中的操作更新數據庫行
@action("prospect", "Prospect", "off we go", "fa-rocket")
def prospect(self, items):
if isinstance(items, list):
for a in items:
out = self.myfunction(a.name)
#Need to update the table with output
#anyideas?
self.update_redirect()
else:
print "nothing"
return redirect(self.get_redirect())
self.datamodel.edit(contact)做到了。謝謝! – RHSMan
就像一個快速的,當添加一個新的聯繫人條目時如何構建add函數期望的項目?我可以創建一個新的問題 – RHSMan