Skip to content

Instantly share code, notes, and snippets.

@xiaotangyuan
Last active August 29, 2015 14:03
Show Gist options
  • Save xiaotangyuan/8d5ce6fd8b6b6dba4832 to your computer and use it in GitHub Desktop.
Save xiaotangyuan/8d5ce6fd8b6b6dba4832 to your computer and use it in GitHub Desktop.
django的media_url、static_url
#媒体文件上传(本地)位置
MEDIA_ROOT=os.path.join(BASE_DIR,'moping/static/media/')
if ONLINE:
MEDIA_URL = 'http://mp360-img.stor.sinaapp.com/'
else:
MEDIA_URL = '/static/media/'
STATIC_ROOT = 'moping/static'
STATIC_URL = '/static/'
# 在django模板中的读取方式
# {{pj.photo.url}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment