前提・実現したいこと
python,flaskを使って読書の記録をする簡単なwebアプリを作っています。
本のタイトル、著者、総ページ数、進んだページをデーターベースに入れて表示させます。pythonの方で取得する値をhtmlの方に持ってきて反映させたいです。
発生している問題・エラーメッセージ
名前、読み進めたページ数などを登録し、ホームページに戻ったときに余白にメッセージを表示させたいのですが、登録する際の入力値(入力したdateの値)を持ってきてhtmlに表示させる方法がわかりません。redirectした際にdateという引数をつくって渡すのだと思うのですが、いろいろ試してもわかりませんでした。ページ数の変数がdateやgenreなのは後で直すので気にしないでください。
拙い説明ですみません。
TypeError: redirect() got an unexpected keyword argument 'date' など
該当のソースコード
python
1# web/views.py 2from web import app, db 3from web.forms import BookForm 4from web.models import Book 5from flask import render_template, redirect, url_for, request, flash 6 7@app.route('/') 8def index(): 9 10 books = Book.query.order_by(Book.date).all() 11 12 return render_template('index.html', books=books) 13 14@app.route('/register', methods=['GET','POST']) 15def register_book(): 16 form = BookForm() 17 18 if form.validate_on_submit(): 19 book = Book(title=form.title.data, author=form.author.data, genre=form.genre.data, date=form.date.data) 20 21 db.session.add(book) 22 db.session.commit() 23 24 return redirect(url_for('index')) 25 26 return render_template('register_book.html', form=form) 27 28@app.route('/<int:id>/update', methods=['GET','POST']) 29def update_book(id): 30 book = Book.query.get(id) 31 32 form = BookForm() 33 34 if form.validate_on_submit(): 35 book.title = form.title.data 36 book.author = form.author.data 37 book.genre = form.genre.data 38 book.date = form.date.data 39 db.session.commit() 40 41 return redirect(url_for('index')) 42 43 elif request.method == 'GET': 44 form.title.data = book.title 45 form.author.data = book.author 46 form.genre.data = book.genre 47 form.date.data = book.date 48 49 return render_template('each_book.html', form=form, id=id) 50 51@app.route('/<int:id>/delete', methods=['GET','POST']) 52def delete_book(id): 53 book = Book.query.get(id) 54 db.session.delete(book) 55 db.session.commit() 56 return redirect(url_for('index')) 57 58 59
<!-- web/templates/index.html --> {% extends "base.html" %} {% block content %} <br> <table class="table"> <thead class="thead-light"> <tr> <th scope="col">書籍名</th> <th scope="col">著者</th> <th scope="col">総ページ数</th> <th scope="col">何ページまで進んだ?</th> </tr> </thead> {% for book in books%} <tbody> <tr> <td> <a href="{{url_for('update_book', id=book.id)}}">{{ book.title }} </a></td> <td> {{ book.author }} </td> <td> {{ book.genre }} </td> <td> {{ book.date }} </td> </tr> </tbody> {% endfor %} </table> <div class="modal-content"> <div class="modal-header"> <h3 class="modal-title" id="ModalLabel"> congratulation!</h3> </div> <div class="modal-body"> <h1>{{date}}ページまで進みました。素晴らしいです!</h1> <h2>この調子で頑張りましょう!</h2> </div> <div class="modal-footer"> </div> </div> {% endblock %}
試したこと
@app.route('/register')の中でdate=Book(date=date.form.data)を作りreturn redirect(url_for('index'), date=date)とし、index.htmlの{{date}}に入れようとしてもうまく入りませんでした。その際TypeError: redirect() got an unexpected keyword argument 'date'とエラーが出ました。
補足情報(FW/ツールのバージョンなど)
mac os calalina 10.15.7 python3 flask sqlalchemy
あなたの回答
tips
プレビュー