Readed所有這些話題https://stackoverflow.com/search?q=django.views.static.serve 它沒有幫助:(Django的:如何添加靜態文件
操作系統:Windows XP 的Python:2.7 Django的:1.2.3
媒體在
d :\錯誤追蹤系統\靜態
隨着文件:
docicons-note.gif
的style.css
在settings.py我設置:
MEDIA_ROOT = 'd:/錯誤追蹤/靜態/'
MEDIA_URL = '/靜態/'
在urls.py我設置:
urlpatterns = patterns('',
(r'^media/(?P.*)$', 'django.views.static.serve',{'document_root':'settings.MEDIA_ROOT'}),
)
模板:(在<標籤讀取它沒有空格>)
< !DOCTYPE html> < html lang='ru'>
< head>
< link rel="stylesheet" type="text/css" href="media/style.css" />
< /head>
< body>
< img src="{{MEDIA_URL}}/docicons-note.gif"/>
< /body>
< /html>
它是測試服務器 – aTei 2010-10-14 08:02:17