from flask import Flask
from flask_bootstrap import Bootstrap
from flask_mail import Mail
from flask_moment import Moment
from flask_sqlalchemy import SQLAlchemy
from flask_login import LoginManager
from flask_pagedown import PageDown
from config import config
bootstrap = Bootstrap()
mail = Mail()
moment = Moment()
db = SQLAlchemy()
pagedown = PageDown()
login_manager = LoginManager()
login_manager.session_protection = 'strong'
login_manager.login_view = 'auth.login'
def create_app(config_name):
app = Flask(__name__)
app.config.from_object(config[config_name])
config[config_name].init_app(app)
bootstrap.init_app(app)
mail.init_app(app)
moment.init_app(app)
db.init_app(app)
login_manager.init_app(app)
pagedown.init_app(app)
if not app.debug and not app.testing and not app.config['SSL_DISABLE']:
from flask_sslify import SSLify
sslify = SSLify(app)
from .main import main as main_blueprint
app.register_blueprint(main_blueprint)
from .auth import auth as auth_blueprint
app.register_blueprint(auth_blueprint, url_prefix='/auth')
from .api_1_0 import api as api_1_0_blueprint
app.register_blueprint(api_1_0_blueprint, url_prefix='/api/v1.0')
return app
現在讓我們到index.html中來看看jinja2該如何運作,不過為了讓index.html看起來盡量簡潔,我將印製Post的模組單獨提了出來,叫_post.html,在index.html中使用只要{% include '_posts.html' %}即可:index.html中来看看jinja2该如何工作,不过为了让index.html看上去尽量简洁,我将打印Post的模块单独提了出来,叫_post.html,在index.html中使用只要{% include '_posts.html' %}即可: 让我们来看_post.html讓我們來看_post.html
我將根據這句話來回答樓主的問題。
我先概括一下思路:用路由把SQLAlchemy查詢到的資料透過參數傳遞給render_template函數,再在.html檔中用jinja2實作動態渲染網頁。
例如現在你有一個部落格資料庫,你需要把部落格的內容顯示到主頁上,該如何顯示呢?
主要的方法其實是用
jinja2
来实现,首先假设你有一个Post
数据库(已经在models.py
中定義好了的,別跟我說你不懂! ! )好吧你不懂,就像這樣:
什麼你不懂db是哪裡import來的?是app包裡
__init__.py
來的呀!這裡懶得解釋了,直接貼文完整的init方法吧不過更改資料庫記得先運行python manager.py shell來遷移一下資料庫呀(具體的自己查去)
扯遠了,我們來看樓主的問題。
首先來看路由(就是
views.py
)中的內容:現在讓我們到
index.html
中來看看jinja2
該如何運作,不過為了讓index.html
看起來盡量簡潔,我將印製Post的模組單獨提了出來,叫_post.html
,在index.html
中使用只要{% include '_posts.html' %}即可:
index.html
中来看看jinja2
该如何工作,不过为了让index.html
看上去尽量简洁,我将打印Post的模块单独提了出来,叫_post.html
,在index.html
中使用只要{% include '_posts.html' %}
即可:让我们来看
_post.html
讓我們來看_post.html
以前看過一點《Flask Web開發:基於Python的Web應用開發實戰》,今天小小複習一下,如果有什麼不對的地方,請大家指出,謝謝!
樓主要的答案這本書裡都有,也強烈推薦想學flask的同學看看這本書呀!
例如你造訪的是/index頁面,你一定會有一個後端,一個前端
給你提供思路,你自己去找相關資料,搜尋引擎搜尋flask開發
你接受參數,可以用路由裡面的變量,也可以用request.args.get指令來取得參數。然後執行程式得到結果,當然最簡單的就是拼接成字串直接用return,當然更正式的是用render_template ,配合jinjia2渲染模板輸出。
這個還是看下flask的快速入門吧。 http://docs.jinkan.org/docs/f...