问题,博客中有的文章要在首页,有的则不在首页,重要行不同,显示的位置也不一样,应该怎么实现这个需求。
1. 表格 中添加下拉选框 选择位置
class PostForm(Form):
avatar = FileField('Change the picture')
name = StringField('What is your posts name?', validators=[Required()])
body = PageDownField("What's on your mind?", validators=[Required()])
location = SelectField(u'按类型查询', validators=[Required()],
choices=[('0', u'默认位置'), ('1', u'位置1'), ('2', u'位置2'), ('3', u'位置3')])
submit = SubmitField('Submit')
2. 在视图函数中 引入上面的表格 。 其中的location 是文章位置。
3 在视图函数中修改数据库。 并且在前端页面引用的时候加上post 的location 判定。 当然,也别忘了在models中的post添加location 数据