Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bxiaopeng/flask-handbook
一些 Flask 请求的示例
https://github.com/bxiaopeng/flask-handbook
ajax flask jquery
Last synced: 16 days ago
JSON representation
一些 Flask 请求的示例
- Host: GitHub
- URL: https://github.com/bxiaopeng/flask-handbook
- Owner: bxiaopeng
- License: gpl-3.0
- Created: 2018-06-28T12:53:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-12T03:24:05.000Z (over 6 years ago)
- Last Synced: 2024-10-30T01:55:32.709Z (2 months ago)
- Topics: ajax, flask, jquery
- Language: HTML
- Size: 94.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOGS
- License: LICENSE
Awesome Lists containing this project
README
本项目是一些 Flask 示例。
## 环境配置
macOS/Linux:
```shell
$ pip install pipenv
$ export PIPENV_VENV_IN_PROJECT=true
$ pipenv --three
$ pipenv shell
$ pipenv install --skip-lock
```
Windows```shell
$ pip install pipenv
$ pipenv --three
$ pipenv shell
$ pipenv install --skip-lock
```## 启动服务
macOS/Linux/Windows:
```shell
$ python examples-request/app.py
```或
macOS/Linux:
```shell
$ bash run.sh
```会启动:
```shell
http://127.0.0.1:7777/
```## 文章翻译
均未开始:
- [Chapter 1: Hello, World!](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world)
- [Chapter 2: Templates](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-ii-templates)
- [Chapter 3: Web Forms](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iii-web-forms)
- [Chapter 4: Database](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iv-database)
- [Chapter 5: User Logins](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-v-user-logins)
- [Chapter 6: Profile Page and Avatars](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-vi-profile-page-and-avatars)
- [Chapter 7: Error Handling](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-vii-error-handling)
- [Chapter 8: Followers](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-viii-followers)
- [Chapter 9: Pagination](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-ix-pagination)
- [Chapter 10: Email Support](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-x-email-support)
- [Chapter 11: Facelift](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xi-facelift)
- [Chapter 12: Dates and Times](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xii-dates-and-times)
- [Chapter 13: I18n and L10n](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xiii-i18n-and-l10n)
- [Chapter 14: Ajax](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xiv-ajax)
- [Chapter 15: A Better Application Structure](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xv-a-better-application-structure)
- [Chapter 16: Full-Text Search](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xvi-full-text-search)
- [Chapter 17: Deployment on Linux](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xvii-deployment-on-linux)
- [Chapter 18: Deployment on Heroku](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xviii-deployment-on-heroku)
- [Chapter 19: Deployment on Docker Containers](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xix-deployment-on-docker-containers)
- [Chapter 20: Some JavaScript Magic](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xx-some-javascript-magic)
- [Chapter 21: User Notifications](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xxi-user-notifications)
- [Chapter 22: Background Jobs](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xxii-background-jobs)
- [Chapter 23: Application Programming Interfaces (APIs)](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xxiii-application-programming-interfaces-apis)## 学习资料
- [从0到1,Python Web开发的进击之路](https://zhuanlan.zhihu.com/p/25038203) :作者:四条鱼 介绍了 Python Web 开发的循序渐进的流程,以及使用到的工具,对于新手来说非常有参考意义。
- [用Docker部署一个Web应用](https://zhuanlan.zhihu.com/p/26418829) :作者:四条鱼 STEP BY STEP
- [Django实践笔记](https://zhuanlan.zhihu.com/p/25294915) 作者:四条鱼