(application.py)
python
1from flask import Flask, render_template 2 3app = Flask(__name__) 4 5@app.route("/") 6def index(): 7 person = { 8 "name": "田中", 9 "age": 26 10 } 11 print(person) 12 print(person["name"]) 13 print(person.get("name")) 14 # print(person.name) # AttributeError: 'dict' object has no attribute 'name' 15 return render_template("index.html", person=person)
(template/index.html)
html
1person ... {{ person }} <br> 2person["name"] ... {{ person["name"] }} <br> 3person.get("name") ... {{ person.get("name") }} <br> 4person.name ... {{ person.name }} <br>
(ブラウザ)
person ... {'name': '田中', 'age': 26} person["name"] ... 田中 person.get("name") ... 田中 person.name ... 田中
application.py では person.name
と書くとエラー AttributeError: 'dict' object has no attribute 'name'
になるのですが、index.html では {{ person.name }}
で辞書のキーの値にアクセスできます。
なぜ index.html では {{ person.name }}
で辞書のキーの値にアクセスできるのでしょうか。ご教示いただけますと幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/17 14:42