go tag

327 questions


1 answers
95 views
0
Why do you use django rest framework?

I'm trying to make an app and web together while playing django. I'm going to use the restful method to send and receive data in the app.But there's a thing called django restframework, but I don't kn...


2 answers
62 views
0
Django template question.

Re-post the question about the long-term template.First of all, below is my code.<table> <tr> {% {% for entry in actress %} <td>{{entry.name}}</td> {% {% endfor %} </tr>...

2 years ago

1 answers
49 views
0
Recall djangoManytoManyField value from View

ProfileCategoryForm is used to receive and save ProfileCategory model values from html in POST format. Here, I would like to load each extras_profile_text and extras_category_text of the Profile and C...

2 years ago

3 answers
48 views
0
It's a question from django form!

The membership page was made as follows.{% extends base.html %}{% {% block title %}User Registration{% endblock %}{% {% block head %}User Registration{% endblock %}{% {% block content %} <form meth...

2 years ago

1 answers
49 views
0
django legacy data model relationship definition question.

Hi, everyone. I'm making a web app that shows a list of movies with actresses.So I downloaded the data through scrap and saved it in DB.Below is the Django model.class MovieList(models.Model): release...

2 years ago

2 answers
155 views
0
Django view page Unicode error

Hello, I am a beginner developer who is just starting to develop Django.Django is trying to input DB and output input data. I don't know if it's because it's in Korean when I input DBUnicodeEncodeErro...

2 years ago

1 answers
45 views
0
I can't drag the css outside??? (django)

In the garageCreate a 1.html file and style.css file in the templateI'm going to drag the css in html to the outside in style.cssWhy not?<!DOCTYPE html> Hello world/* style.css */h1 { color: or...

2 years ago

1 answers
52 views
0
Django Web Development

I've built a server, but I've never built one with the web.Previously, when you created a server, you created a code with PyCharm and Eclipse in the console windowI made it run, but I'm going to use i...

2 years ago

1 answers
78 views
0
To set the password field in the django model field

class AddId(models.Model): author = models.ForeignKey('auth.User') id = models.CharField(max_length=200) password = models.CharField(max_length=200)def __str__(self): return self.idIn Janggo, we want ...

2 years ago

1 answers
48 views
0
Django urls.Get datetime from py

I'm using django to make an automatic response function for Kakao Talk plus friends, and basically, the kidov required by Kakao TalkThe message is from url.pyurl(r'keyboard$', views.keyboard), url(r'm...

2 years ago
« - 27 - »

© 2024 OneMinuteCode. All rights reserved.