我是编程新手,最近我的一个朋友给我一个项目,以使自己熟悉编程环境和语言(在此特定示例中为python)。 https://www.youtube.com/watch?v=QnDWIZuWYW0我将此视频用作初学者教程,以帮助我了解如何进行我的个人项目。我编写的代码与视频中的代码完全相同,但出现错误。
from flask import Flask, render_template
app = Flask(__name__)
posts = [
{
'author': 'Alon Salzmann',
'title': 'First Post',
'content': 'First post content',
'date posted': 'September 5, 2018'
},
{
'author': 'Alon Salzmann',
'title': 'Second Post',
'content': 'Second post content',
'date posted': 'September 6, 2018'
}
]
@app.route("/")
def homepage():
return render_template('Home.html', posts=posts)
@app.route("/about")
def about():
return render_template('About.html')
if __name__ == '__main__':
app.run(debug=True)
上面的代码是我编写的python代码,下面的代码是我编写的涉及python的html代码:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
{% for post in posts %}
<h1>{{ post.title }}</h1>
<p>By {{ post.author }} on {{ post.date posted }}</p>
<p>{{ post.content }}</p>
{% endfor %}
</body>
</html>
同时在cmd和powershell上运行程序(当然不是同时运行),然后转到我的本地主机地址,出现标题中出现的错误:
“ jinja2.exceptions.TemplateSyntaxError:预期令牌'打印声明的结尾',被'发布'”
我很想对为什么发生这种情况以及如何解决这个问题进行很好的解释。请记住,我是一个初学者,也许一开始可能需要解释一些基本概念:)。
ps。视频中那个家伙的代码有效,所以我很想了解我哪里出错了。
答案 0 :(得分:1)
<p>By {{ post.author }} on {{ post.date posted }}</p>
行是这里的问题
用<p>By {{ post.author }} on {{ post.date_posted }}</p>
post.date_posted
是一个变量,应该与模型中的变量相同,并且它们之间的空格显然是语法错误(typos)
答案 1 :(得分:-1)
您必须执行<p>By {{ post['author'] }} on {{ post['date posted'] }}
才能使其正常工作。这是一个命令。因此,您必须使用索引而不是调用来获取值。