Flask Blog: Part 1 (Setting up Template & Database)

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ม.ค. 2025

ความคิดเห็น • 13

  • @cameroonetranslate214
    @cameroonetranslate214 4 ปีที่แล้ว +1

    cool thanks a lot bro you are a life saver

  • @johnchong9660
    @johnchong9660 3 ปีที่แล้ว

    how to create 2 table in same database ?

    • @devguyahnaf
      @devguyahnaf  3 ปีที่แล้ว +1

      Use db.create_all() and that will create all the tables for the corresponding classes with db.Model

    • @johnchong9660
      @johnchong9660 3 ปีที่แล้ว

      @@devguyahnaf thx ya

    • @johnchong9660
      @johnchong9660 3 ปีที่แล้ว

      @@devguyahnaf may I know how about the when I wanted to add new or remove column in the database?

    • @devguyahnaf
      @devguyahnaf  3 ปีที่แล้ว +1

      @@johnchong9660 You can use flask migrate. Give a quick google search.

  • @igordc16
    @igordc16 2 ปีที่แล้ว

    You should use Jinja2 templates and url_for when creating templates in Flask. You did not use it in this video.

    • @devguyahnaf
      @devguyahnaf  2 ปีที่แล้ว

      I personally didn't like templates back then (due to lack of experience). But if I were to recreate this tutorial again, I would definitely use it.

  • @junerusselslaude5825
    @junerusselslaude5825 3 ปีที่แล้ว

    nice sir

  • @itsshuayeb73
    @itsshuayeb73 4 ปีที่แล้ว

    First to comment

  • @igordc16
    @igordc16 2 ปีที่แล้ว

    If anyone is having trouble to crate the datebase just add the following code after you have created the class Post()
    with app.app_context():
    db.create_all()

    • @devguyahnaf
      @devguyahnaf  2 ปีที่แล้ว

      Yes, now you need an app context