從首頁問答標題到問答詳情頁


    1. 主PY文件寫視圖函數,帶id參數。
    2. @app.route('/detail/<question_id>')
      def detail(question_id):
          quest = 
          return render_template('detail.html', ques = quest)
    3. 首頁標題的標籤作帶參數的連接。
      1. {{ url_for('detail',question_id = foo.id) }}
    4. 在詳情頁將數據的顯示在恰當的位置。
    5. {{ ques.title}}
      {{ ques.id  }}{{  ques.creat_time }}
      {{ ques.author.username }} 
      {{ ques.detail }}
1 @app.route('/detail/<question_id>')
2 def detail(question_id):
3     quest = Question.query.filter(Question.id == question_id).first()
4     return render_template('detail.html',ques = quest)
1 <a href="{{ url_for('detail',question_id = foo.id) }}">{{ foo.title }}</a>
相關文章
相關標籤/搜索