django "GET /moviequery/static/images/search_03.png HTTP/1.1" 404 2029

679 단어 Pythondjango
django 프레임 워 크 에서 그림, css \ js 등 자원 을 찾 을 수 없습니다.
 "GET /moviequery/static/images/search_03.png HTTP/1.1" 404 2029
 
1. 먼저 settings. py 에서 다음 과 같은 설정 을 합 니 다.
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/

STATIC_URL = '/static/'

STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)

2. 프로젝트 의 루트 디 렉 터 리 에 static 폴 더 를 새로 만 듭 니 다. 루트 디 렉 터 리 에 다른 app 디 렉 터 리 에 서 는 유효 하지 않 습 니 다.
moviequery 는 제 프로젝트 루트 디 렉 터 리 입 니 다. 그림, css, js 파일 을 static 에 두 고 참조 할 때 / static /... 참조 할 수 있 습 니 다.
 url(/static/images/search_03.png)

좋은 웹페이지 즐겨찾기