|
@@ -14,6 +14,10 @@ def internal_server_error(e):
|
|
|
def index():
|
|
|
return render_template('index.html')
|
|
|
|
|
|
+@app.route('/index2')
|
|
|
+def index2():
|
|
|
+ return render_template('index2.html',title='Index - Frog')
|
|
|
+
|
|
|
@app.route('/post/')
|
|
|
def posts():
|
|
|
allposts=[{'id':1,'title':'title1'},{'id':2,'title':'title2'}]
|
|
@@ -21,24 +25,4 @@ def posts():
|
|
|
|
|
|
@app.route('/post/<int:id>')
|
|
|
def post(id):
|
|
|
- return render_template('post.html',id=id)
|
|
|
-
|
|
|
-@app.route('/article/')
|
|
|
-def article():
|
|
|
- return redirect(url_for('posts'))
|
|
|
-
|
|
|
-from flask import abort
|
|
|
-
|
|
|
-@app.route('/i-love/<obj>')
|
|
|
-def ilove(obj):
|
|
|
- if obj=='shit':
|
|
|
- abort(404)
|
|
|
- return '<h1>I love %s</h1>' % obj
|
|
|
-
|
|
|
-@app.route('/<int:num1>/plus/<int:num2>/eq/<int:num3>')
|
|
|
-def count(num1,num2,num3):
|
|
|
- if num1+num2==num3:
|
|
|
- flash('计算正确')
|
|
|
- else:
|
|
|
- flash('计算错误')
|
|
|
- return redirect(url_for('index'))
|
|
|
+ return render_template('post.html',id=id)
|