Это видео недоступно.
Сожалеем об этом.

Part 2: How to fetch/Retrieve image from database in Django | Django Image CRUD

Поделиться
HTML-код
  • Опубликовано: 24 апр 2021
  • In this video, you will learn how to fetch and display images from database to your web page.
    Show your support and get complete CRUD source code with DB: fundacodester....
    Code : fundaofwebit.c...
    Playlist link : • Django Image CRUD
    If the video helps you, hit the like button and subscribe to the channel. If you have any doubts or suggestions, drop them in the comments below and i will answer them.
    Thanks for watching
    Buy me a coffee : www.buymeacoff...
    Follow me on instagram : / sharma_coder

Комментарии • 40

  • @PooriaJafari-v7l
    @PooriaJafari-v7l 27 дней назад

    Thankful. I did this but the image is not displayed. I want to take images only from the database and have nothing to do with the static folder. what do I do?

  • @sumitdas2790
    @sumitdas2790 2 года назад +2

    amazing you sir💕💕 this video also helped me today..

  • @centralcodingethiopia
    @centralcodingethiopia Год назад +1

    THIS TUTORIAL HEPLS ME A LOT.
    THANKS

  • @azarathameenca5697
    @azarathameenca5697 2 месяца назад

    Thank you

  • @averagegamer2429
    @averagegamer2429 3 месяца назад +1

    thanku sir

  • @user-yk6wz6ow3s
    @user-yk6wz6ow3s 3 года назад +1

    Спасибо, всё получилось!

  • @asmaaalahmadi
    @asmaaalahmadi 3 года назад +2

    Thank you sooo much

  • @Boss-cv6ys
    @Boss-cv6ys 3 года назад +2

    My image is not load in homepage from database 😔😔please help me....

    • @SharmaCoder
      @SharmaCoder  3 года назад

      Have you stored the images inside the static folder?

  • @ajrathore5000
    @ajrathore5000 2 года назад

    thanks you

  • @Oche923
    @Oche923 Год назад

    THANK YOU SOOOOOO SOOOO MUCH subbed

  • @Sandeep-nr3mj
    @Sandeep-nr3mj 2 года назад

    bro if i have two images in a single row how can i update the only one image

  • @kelvinronoh
    @kelvinronoh 3 года назад +2

    helpful

  • @gnanking
    @gnanking 2 года назад

    if settings.DEBUG:
    urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) does not work

    • @SharmaCoder
      @SharmaCoder  2 года назад

      Is the Debug set to false in your settings.py file?

  • @karthikk7460
    @karthikk7460 3 года назад

    hello, sir I am using MySQL workbench as a database and actually, I have not created any model, I uploaded the image using SQL query in the blob format. can I use that to display the image Django template?

    • @limbadhiren
      @limbadhiren 10 месяцев назад

      same problem, did you solve this problem ? please solve

  • @mertmanoah7751
    @mertmanoah7751 6 месяцев назад

    I love you

  • @harishguhan919
    @harishguhan919 2 года назад +1

    I want this source code bro how can i get the source code from you

    • @SharmaCoder
      @SharmaCoder  2 года назад

      Check out the different links in the description.

  • @maysamaysa2824
    @maysamaysa2824 3 месяца назад

    Bro please send me full code please🙏🏻🙏🏻

  • @MrKathu
    @MrKathu 2 года назад

    Bro what is extendeds 'products/layout/main.html'%
    What is this

    • @SharmaCoder
      @SharmaCoder  2 года назад

      It the layout file which has the html layout.

    • @MrKathu
      @MrKathu 2 года назад

      Bro you don't show the layout file in this video why

    • @SharmaCoder
      @SharmaCoder  2 года назад

      ruclips.net/video/gqtfqcJagsI/видео.html
      Watch here. From 8:00

  • @gnanking
    @gnanking 2 года назад

    products = Item.objects.all() does not seem to work.

    • @SharmaCoder
      @SharmaCoder  2 года назад

      Here Item is my model name. You have to wtite your model name and make sure you import the model.
      That should work.

    • @gnanking
      @gnanking 2 года назад +1

      Thanks. Did some research on models and made it work. However it should be part of your video for better clarity.