我正在使用 flask-appbuilder 构建一个应用程序,我有一个运行函数的操作,我想用函数的输出更新表中的行。不知道该怎么做。有什么帮助吗?谢谢
@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())