我是靠谱客的博主 烂漫小甜瓜,最近开发中收集的这篇文章主要介绍开发一个全栈网页的步骤,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Steps for getting a database-backed web application up and running
This is an overview of the list of tasks we’ll need to do for a given web app to run with a database.

  1. Create a database
    Using createdb in Postgres

  2. Establish a connection to the database
    We can connect to a Postgres server from a Python web server using pyscopg2 with psycopg2.connect()

  3. Define and create your data schema
    Execute CREATE TABLE commands to create the tables and define the schema (attributes, data types, etc) that will define what data gets housed for our web app.

  4. Seed the database with initial data
    (Optional) Give the database some initial data, e.g. test data for doing local development.

  5. Create routes and views
    Create routes in our server that will serve pages (views) to the client. Write up our HTML, CSS, and Javascript in our views.
    Then finally, to get our web app running

  6. Run the server
    Get the web server running.

  7. Deploy the server to the web
    … and that is, generally, how we would build a web application backed by a database.

最后

以上就是烂漫小甜瓜为你收集整理的开发一个全栈网页的步骤的全部内容,希望文章能够帮你解决开发一个全栈网页的步骤所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部