import datetime
u = models.User.query.get(1)
p = models.Post(body='my first post!', timestamp=datetime.datetime.utcnow(), author=u)
迷茫2017-04-18 10:33:35
Because the Post class you defined does not have the timestamp attribute: https://github.com/zzzeek/sql...