- jquery 바코드
- 404에러페이지
- SSD 복사
- 강제이동
- javascript 바코드스캔
- 바코드 생성하기
- 파일업로드 유효성체크
- 말줄임표시
- django 엑셀불러오기
- ViewBag
- javascript 바코드 생성
- Mac Oracle
- asp.net dropdownlist
- 맥 오라클설치
- javascript 유효성체크
- asp.net core Select
- php 캐쉬제거
- 파일업로드 체크
- 하드 마이그레이션
- XSS방어
- 하드 윈도우 복사
- javascript redirection
- 바코드 스캔하기
- asp.net Select
- XSS PHP
- 타임피커
- TempData
- ViewData
- jquery 바코드생성
- ASP.Net Core 404
목록분류 전체보기 (758)
웹개발자의 기지개
import pandas as pd df = pd.read_csv('https://bit.ly/ds-house-price') df pandas loc(조건식) and 조건은 & , or 조건은 | 분양가격 값들중에 공백이 있다. 제거해 보자. 체인방식이 지원된다. 연이어 str.strip() 을 시켜서 공백제거 아래에서는 데이터가 아예없는 빈공간이 존재하는지 검색 그 해당 부분은 0으로 임의 삽입 원래는 문자형의 object 인데 이를 int형으로 변환하기 데이터 마스터 '이경록' 님의 포스팅 글을 바탕으로 수정변경하였습니다. 참고 : https://teddylee777.github.io/ 테디노트 님의 판다스 노트 전자책 https://wikidocs.net/book/4639 한 권으로 끝내는 판다스는..
날짜와 시간 모듈이다. 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..
특정 웹주소로 접근할때에 다량의 문자열내용중 특정문자열을 변경하기 코딩작업을 하는 과정에서 잠깐 기록해 본다. /2022/contents/news.php 라는 웹주소가 있을때, 1 2 3 4 5 6 7 8 $rURL = explode('/',$_SERVER['REQUEST_URI']); if ($rURL[1]=="2022") { $contents = str_replace("../pack", "../../pack",$contents); echo "".$contents.""; } else { echo "".$contents.""; } Colored by Color Scripter cs ../pack 문자열을 ../../pack 문자열로 간단히 문자열 교체를 하고 있다. str_replace() 함수 http..
우선 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..