- ViewBag
- asp.net dropdownlist
- 404에러페이지
- 타임피커
- Mac Oracle
- XSS PHP
- XSS방어
- SSD 복사
- 하드 윈도우 복사
- django 엑셀불러오기
- 바코드 스캔하기
- jquery 바코드생성
- asp.net Select
- php 캐쉬제거
- ASP.Net Core 404
- 말줄임표시
- javascript 바코드스캔
- 바코드 생성하기
- 하드 마이그레이션
- javascript redirection
- asp.net core Select
- jquery 바코드
- TempData
- ViewData
- 강제이동
- 파일업로드 체크
- 파일업로드 유효성체크
- 맥 오라클설치
- javascript 유효성체크
- javascript 바코드 생성
목록python (87)
웹개발자의 기지개
python 상에서 super 상위클래스 사용방법 여타의 다른 키워드와 동일하게 super 키워드를 쓴다. class ExCreateView(CreateView): def form_valid(self, form): # form.instance.user = self.request.user return super(ExCreateView, self).form_valid(form) python2 에서는 class A(object): def foo(self): print "A" class B(A): def foo(self): print "B" super(B, self).foo() class C(B): def foo(self): print "C" super(C, self).foo() c = C() c.foo() 실..
날짜와 시간 모듈이다. https://docs.python.org/ko/3/library/datetime.html datetime — 기본 날짜와 시간 형 — Python 3.10.4 문서 datetime — 기본 날짜와 시간 형 소스 코드: Lib/datetime.py datetime 모듈은 날짜와 시간을 조작하는 클래스를 제공합니다. 날짜와 시간 산술이 지원되지만, 구현의 초점은 출력 포매팅과 조작을 위한 docs.python.org strftime() 과 strptime() 비교 https://docs.python.org/ko/3/library/datetime.html#strftime-strptime-behavior datetime — 기본 날짜와 시간 형 — Python 3.10.4 문서 date..
위의 이미지를 보면 업로드된 파일들은 모두 media 폴더내에 별도로 files 와 images 폴더로 각각 별도로 저장되어 있다. [ /config/settings.py ] - 프로젝트앱에서 /media 폴더 설정 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 from pathlib import Path import os BASE_DIR = Path(__file__).resolve().parent.parent LANGUAGE_CODE = 'ko-kr' TIME_ZONE = 'Asia/Seoul' USE_I18N = True USE_TZ = True STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE..
일단 request.POST['name'] 이런식으로 보통은 POST 방식으로 넘어온 값을 간편하게 많이 이용한다. 그런데, 그값이 없으면 KeyError 라는 에러를 발생시키고 오류 메세지가 띄워지게 된다. 이를위해 아래 소스처럼 request.POST.get('name') 을 이용하면 에레메세지를 반환하지 않고 name 변수값이 없으면 None 값을 반환하는 것을 알수 있다. 또한, request.POST.get('name', '') 하면 변수값이 없다면 default 로 빈값을 임의로 넣어준다. 참고 : http://daplus.net/django-request-post-get-sth-%EB%8C%80-request-post-sth-%EC%B0%A8%EC%9D%B4%EC%A0%90/ 참고 : htt..
Member 상에 no 라는 PK 가 있고, Board 상에 이와 연결된 member_no 라는 외래키 FK 가 있을때, Board 글 삽입시 아래와 같은 에러메세지를 만났다. ValueError at /board/write/ Cannot assign "'1'": "Board.member_no" must be a "Member" instance. Request Method: POST Request URL: http://127.0.0.1:8000/board/write/ Django Version: 4.0.4 Exception Type: ValueError Exception Value: Cannot assign "'1'": "Board.member_no" must be a "Member" instance. ..
RuntimeError at /member/register You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8000/member/register/ (note the trailing slash), or set APPEND_SLASH=False in your Django settings. Request Method: POST Request URL: http://127.0.0.1:8000/member..
우선 Models.py 의 소스이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 from django.db import models class Blog(models.Model): name = models.CharField(max_length=100) tagline = models.TextField() def __str__(self): return self.name class Author(models.Model): name = models.CharField(max_length=200) email = models.EmailField() def __str__(self): return self.nam..
https://github.com/wonpaper/Django_SimpleCustomMemberLogin GitHub - wonpaper/Django_SimpleCustomMemberLogin: Django 초간단 사용자 정의 회원가입, 로그인, 로그아웃 Django 초간단 사용자 정의 회원가입, 로그인, 로그아웃. Contribute to wonpaper/Django_SimpleCustomMemberLogin development by creating an account on GitHub. github.com Django 에는 자체적으로 django.contrib.auth from django.contrib.auth.models import AbstractUser 등을 통하여 User 에 대한 사용자 ..