Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 정규식 컴파일
- c3 step graph
- telegraf
- linux시간으로 변경
- 백준
- g++ 업데이트
- selinux port 등록
- python subprocess
- gcc 업데이트
- grafana dashboard
- gcc regex
- centos pyhon 설치
- CentOS7
- InfluxDB
- c3 축 없애기
- 1697
- semanage
- influxdb 설치
- snmp test
- c3 축 가리기
- python popen
- snmp
- 정규식 활용
- regex_search
- c3 second
- subporcess path
- 정규식 문자열 출력
- c++ 정규식
- python os
- c3 초
Archives
- Today
- Total
리셋 되지 말자
django local image database save 본문
https://stackoverflow.com/questions/1308386/programmatically-saving-image-to-django-imagefield
Super easy if model hasn't been created yet:
First, copy your image file to the upload path (assumed = 'path/' in following snippet).
Second, use something like:
class Layout(models.Model): image = models.ImageField('img', upload_to='path/') layout = Layout() layout.image = "path/image.png" layout.save()
tested and working in django 1.4, it might work also for an existing model.
Follow
answered Oct 16 '12 at 15:11
8,80811 gold badges44 silver badges
'Django' 카테고리의 다른 글
CSRF 토큰 오류 (0) | 2021.12.21 |
---|---|
celery shared_task 수집하기 (0) | 2021.10.12 |
filter, get 차이 (0) | 2021.10.12 |
message 사용하기 (0) | 2021.05.06 |
migrate 테이블 생성 안할때 (0) | 2021.05.02 |
Comments