• App下載

    詞條

    大約有 280 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,355 項。(搜索耗時:0.0040秒)

    241.Flask 渲染模板

    Flask 模板我們本來是可以以HTML的形式返回綁定到某個URL的函數(shù)的輸出。例如,在以下腳本中,hello()函數(shù)將使用<h1>標(biāo)簽呈現(xiàn)'Hello World'。from flask import Flask app = Flask(__name__) @app.route('/') def index(): return '<html>&...

    http://hgci.cn/rrhflask/rrhflask-9c3e32av.html

    242.Flask 部署和分發(fā)

    ...理器,它能夠 完成安裝軟件包之外更多的任務(wù)。 而對于 Flask 自己,則所有您可以在 cheessshop 上找到的軟件包,都隨著 distribute 分發(fā)管理器,或者更古老的 setuptools 和 distutils 分發(fā)。 在這里,我們假定您的應(yīng)用名為 yourapplication.p...

    http://hgci.cn/flask_1/flask_1-jcqh3j1y.html

    243.Flask 應(yīng)用調(diào)度

    應(yīng)用調(diào)度指的是在 WSGI 層次合并運行多個 Flask 的應(yīng)用的進(jìn)程。您不能將 Flask 與更大的東西合并,但是可以和 WSGI 應(yīng)用交叉。這甚至允許您將 Django 和 Flask 的應(yīng)用運行在同一個解釋器下。這么做的用處依賴于 這個應(yīng)用內(nèi)部是如...

    http://hgci.cn/flask_1/flask_1-h1p63j1w.html

    244.Flask Version 0.10 to Version 1.0

    ...e by default due. This was allowed due to the different escaping behavior. Flask will now raise an error if you attempt to register a new function on an already used endpoint. Added wrapper module around simplejson and added default serialization of datetime objects. This allows much easier customiz...

    http://hgci.cn/flask_1/flask_1-gzi93j4o.html

    245.Flask 擴展之SQLite(數(shù)據(jù)庫)

    Flask SQLitePython對SQlite有內(nèi)置的支持。SQlite3模塊附帶Python發(fā)行版。在本節(jié)中,我們將了解Flask應(yīng)用程序如何與SQLite交互。創(chuàng)建一個SQLite數(shù)據(jù)庫'database.db'并在其中創(chuàng)建學(xué)生表。import sqlite3 conn = sqlite3.connect('database.db') #prin...

    http://hgci.cn/rrhflask/rrhflask-fhia32bw.html

    246.Flask 擴展之SQLAlchemy(ORM)

    Flask SQLAlchemy在Flask Web應(yīng)用程序中使用原始SQL對數(shù)據(jù)庫執(zhí)行CRUD(crud是指在做計算處理時的增加(Create)、讀取查詢(Retrieve)、更新(Update)和刪除(Delete))操作可能很繁瑣。相反,SQLAlchemy模塊是一個強大的OR Mapper,它為應(yīng)用程序開發(fā)人...

    http://hgci.cn/rrhflask/rrhflask-3jtl32bx.html

    247.Flask Web開發(fā) 基于Python的Web應(yīng)用開發(fā)實戰(zhàn) 第2版(圖靈出品)

    ...數(shù):211正文語種:中文 點此購買 編輯推薦“本書是學(xué)習(xí)Flask的實用參考。其中介紹的數(shù)據(jù)庫交互操作和不同的部署方式讓我受益匪淺?!薄狫ason Myers“很喜歡這種項目驅(qū)動式的教材,每一步都十分清楚,從開發(fā)到測試再到部署...

    http://hgci.cn/booklist/booklist-kmhl3fh7.html

    248.Flask FastCGI

    FastCGI 是在像 nginx 、 lighttpd 和 cherokee 服務(wù)器上的一個部署選擇。 其它選擇見 uWSGI 和 獨立 WSGI 容器 章節(jié)。 在它們上的任何一個運行你的 WSGI 應(yīng)用首先需要一個 FastCGI 服務(wù)器。最流行的一個 是 flup ,我們會在本指導(dǎo)中使用它。...

    http://hgci.cn/flask_1/flask_1-fg163j2n.html

    249.Flask mod_wsgi (Apache)

    如果你使用 Apache web 服務(wù)器,請考慮使用 mod_wsgi 。 注意: 請確保在任何 ?app.run() ?調(diào)用之前,你應(yīng)該把應(yīng)用文件放在一個? if __name__ == `__main__`:? 塊中或移動到獨立的文件。只確保它沒被調(diào)用是 因為這總是會啟動一個本地的...

    http://hgci.cn/flask_1/flask_1-pobg3j2k.html

    250.Flask Version 0.1 to Version 0.6

    ...Bugfix release, released on May 28th 2010 fixed a error reporting bug with flask.Config.from_envvar() removed some unused code from flask release does no longer include development leftover files (.git folder for themes, built documentation in zip and pdf file and some .pyc files) Version 0.4 Releas...

    http://hgci.cn/flask_1/flask_1-f4jn3j4l.html

    抱歉,暫時沒有相關(guān)的微課

    w3cschool 建議您:

    • 檢查輸入的文字是否有誤

    抱歉,暫時沒有相關(guān)的視頻課程

    w3cschool 建議您:

    • 檢查輸入的文字是否有誤

    抱歉,暫時沒有相關(guān)的教程

    w3cschool 建議您:

    • 檢查輸入的文字是否有誤

    241.Flask 渲染模板

    Flask 模板我們本來是可以以HTML的形式返回綁定到某個URL的函數(shù)的輸出。例如,在以下腳本中,hello()函數(shù)將使用<h1>標(biāo)簽呈現(xiàn)'Hello World'。from flask import Flask app = Flask(__name__) @app.route('/') def index(): return '<html>&...

    http://hgci.cn/rrhflask/rrhflask-9c3e32av.html

    242.Flask 部署和分發(fā)

    ...理器,它能夠 完成安裝軟件包之外更多的任務(wù)。 而對于 Flask 自己,則所有您可以在 cheessshop 上找到的軟件包,都隨著 distribute 分發(fā)管理器,或者更古老的 setuptools 和 distutils 分發(fā)。 在這里,我們假定您的應(yīng)用名為 yourapplication.p...

    http://hgci.cn/flask_1/flask_1-jcqh3j1y.html

    243.Flask 應(yīng)用調(diào)度

    應(yīng)用調(diào)度指的是在 WSGI 層次合并運行多個 Flask 的應(yīng)用的進(jìn)程。您不能將 Flask 與更大的東西合并,但是可以和 WSGI 應(yīng)用交叉。這甚至允許您將 Django 和 Flask 的應(yīng)用運行在同一個解釋器下。這么做的用處依賴于 這個應(yīng)用內(nèi)部是如...

    http://hgci.cn/flask_1/flask_1-h1p63j1w.html

    244.Flask Version 0.10 to Version 1.0

    ...e by default due. This was allowed due to the different escaping behavior. Flask will now raise an error if you attempt to register a new function on an already used endpoint. Added wrapper module around simplejson and added default serialization of datetime objects. This allows much easier customiz...

    http://hgci.cn/flask_1/flask_1-gzi93j4o.html

    245.Flask 擴展之SQLite(數(shù)據(jù)庫)

    Flask SQLitePython對SQlite有內(nèi)置的支持。SQlite3模塊附帶Python發(fā)行版。在本節(jié)中,我們將了解Flask應(yīng)用程序如何與SQLite交互。創(chuàng)建一個SQLite數(shù)據(jù)庫'database.db'并在其中創(chuàng)建學(xué)生表。import sqlite3 conn = sqlite3.connect('database.db') #prin...

    http://hgci.cn/rrhflask/rrhflask-fhia32bw.html

    246.Flask 擴展之SQLAlchemy(ORM)

    Flask SQLAlchemy在Flask Web應(yīng)用程序中使用原始SQL對數(shù)據(jù)庫執(zhí)行CRUD(crud是指在做計算處理時的增加(Create)、讀取查詢(Retrieve)、更新(Update)和刪除(Delete))操作可能很繁瑣。相反,SQLAlchemy模塊是一個強大的OR Mapper,它為應(yīng)用程序開發(fā)人...

    http://hgci.cn/rrhflask/rrhflask-3jtl32bx.html

    247.Flask Web開發(fā) 基于Python的Web應(yīng)用開發(fā)實戰(zhàn) 第2版(圖靈出品)

    ...數(shù):211正文語種:中文 點此購買 編輯推薦“本書是學(xué)習(xí)Flask的實用參考。其中介紹的數(shù)據(jù)庫交互操作和不同的部署方式讓我受益匪淺?!薄狫ason Myers“很喜歡這種項目驅(qū)動式的教材,每一步都十分清楚,從開發(fā)到測試再到部署...

    http://hgci.cn/booklist/booklist-kmhl3fh7.html

    248.Flask FastCGI

    FastCGI 是在像 nginx 、 lighttpd 和 cherokee 服務(wù)器上的一個部署選擇。 其它選擇見 uWSGI 和 獨立 WSGI 容器 章節(jié)。 在它們上的任何一個運行你的 WSGI 應(yīng)用首先需要一個 FastCGI 服務(wù)器。最流行的一個 是 flup ,我們會在本指導(dǎo)中使用它。...

    http://hgci.cn/flask_1/flask_1-fg163j2n.html

    249.Flask mod_wsgi (Apache)

    如果你使用 Apache web 服務(wù)器,請考慮使用 mod_wsgi 。 注意: 請確保在任何 ?app.run() ?調(diào)用之前,你應(yīng)該把應(yīng)用文件放在一個? if __name__ == `__main__`:? 塊中或移動到獨立的文件。只確保它沒被調(diào)用是 因為這總是會啟動一個本地的...

    http://hgci.cn/flask_1/flask_1-pobg3j2k.html

    250.Flask Version 0.1 to Version 0.6

    ...Bugfix release, released on May 28th 2010 fixed a error reporting bug with flask.Config.from_envvar() removed some unused code from flask release does no longer include development leftover files (.git folder for themes, built documentation in zip and pdf file and some .pyc files) Version 0.4 Releas...

    http://hgci.cn/flask_1/flask_1-f4jn3j4l.html

    抱歉,暫時沒有相關(guān)的文章

    w3cschool 建議您:

    • 檢查輸入的文字是否有誤

    熱門課程