django tag

257 questions


1 answers
48 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
71 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
40 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

1 answers
78 views
0
During django installation with cmd, an error appears and cannot be installed.

I want to install Python and django.Installation continues to fail with an error related to pip version. The same error appears when I try the pip upgrade command as shown below.I have no idea what th...

2 years ago

2 answers
127 views
0
Create a real-time web page using python Django (so that it can be changed as soon as the data is updated)

What I'm curious about is the concept.Python and JavaScript also use websocket (socket.io??)If an event occurs because the client and server are connected to each other,I understand that you can send ...


1 answers
39 views
0
This is django's question! ^^

I want to make the data of the long-range model have each page in the template.For example,If there is a Korean movie model released in 2015 as below (data is crawled and stored) class Movielist(model...

2 years ago

1 answers
53 views
0
How do you measure the query rate in the long run?

I'm using a storage and post-grescual.By the way, I want to know how fast the query sentence I made speeds up when there is a lot of data.I used django debug toolbar In this case, I can't figure out h...

2 years ago

1 answers
39 views
0
I have a question.

django question.Continue with the previous question . class Apply(models.Model): writer=models.ForeignKey(Register, on_delete=models.CASCADE,null=True)I made a registration model using ForeignKey in t...

2 years ago

1 answers
41 views
0
How can I show the image boy in the long-range template?

Hi, everyone.This is a question about django.My question is how to display the image on the long-range template like the model related to the image.I'm making a website that shows a list of Korean act...

2 years ago

1 answers
42 views
0
Can't I specify two functions with the same url in djangourl?

urlpatterns = [ path('', views.index, name='index'), path('', views.birthday_check, name='birthday_check'),]Can't we assign two functions to one url in this way?

2 years ago
« - 21 - »

© 2024 OneMinuteCode. All rights reserved.