制作flask app,即使用.docx文件(home/user/webapp/app/docxfiles/*.docx)并使用sqlalchemy显示它们。使用mysql。列是从flask admin写入的。这里有一段代码你做不好。如何将默认值写入с列,其中默认值是从使用另一个函数的函数创建的值с列?
class Item(db.Model):
def getinfo(namefile):
path_file = os.path.abspath(os.path.dirname(__file__)) + "/docxfiles/" + namefile
doc = docx.Document(path_file)
fulltext = []
for i in doc.paragraphs:
fulltext.append(i.text)
body = '\n\n'.join(fulltext)
return re.sub('<(.|\n)*?>','',body)
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
namefile = db.Column(db.String(200), unique=True)
info = db.Column(db.String(16777216), server_default = getinfo(namefile))
1条答案
按热度按时间vmpqdwk31#
传递为的列默认值
server_default
或者default
值对于设置固定的默认值、日期或时间戳很有用,但不接受运行时参数以允许更复杂的处理,如示例中所示。放置此类代码的正确位置是在模型类的构造函数中,该构造函数仅在创建新对象时调用,而在从数据库检索对象时不调用。代码中唯一需要做的更改就是getinfo
将函数转换为__init__
方法和手动设置namefile
以及info
.