码迷,mamicode.com
首页 > 其他好文 > 详细

跨域设置

时间:2018-10-08 15:58:18      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:域名   let   ken   lis   xmlhttp   XML   hit   blog   delete   


# 参考:
https://blog.csdn.net/linzi1994/article/details/82724429
https://www.cnblogs.com/ShaunChen/p/5998800.html

# 配置详解:
# 跨域设置
CORS_ORIGIN_ALLOW_ALL = True  # 允许所有域名
CORS_ALLOW_CREDENTIALS = True  # 允许获取cookie
CORS_URLS_REGEX = r‘^.*$‘


CORS_ORIGIN_WHITELIST = (
    ‘*‘
)
#
# CORS_ORIGIN_ALLOW_ALL = False
# CORS_ORIGIN_WHITELIST = (
#       ‘localhost:63343‘,
# )
#
# # 默认值是全部:
# CORS_ORIGIN_WHITELIST = ()  # 或者定义允许的匹配路径正则表达式.
# CORS_ORIGIN_REGEX_WHITELIST = (‘^(https?://)?(\w+.)?>google.com$‘, )   # 默认值:
# CORS_ORIGIN_REGEX_WHITELIST = ()

CORS_ALLOW_METHODS = (
    ‘DELETE‘,
    ‘GET‘,
    ‘OPTIONS‘,
    ‘PATCH‘,
    ‘POST‘,
    ‘PUT‘,
    ‘VIEW‘,
)

CORS_ALLOW_HEADERS = (
    ‘XMLHttpRequest‘,
    ‘X_FILENAME‘,
    ‘accept-encoding‘,
    ‘authorization‘,
    ‘content-type‘,
    ‘dnt‘,
    ‘origin‘,
    ‘user-agent‘,
    ‘x-csrftoken‘,
    ‘x-requested-with‘,
    ‘Pragma‘,
)


跨域设置

标签:域名   let   ken   lis   xmlhttp   XML   hit   blog   delete   

原文地址:https://www.cnblogs.com/lajiao/p/9754584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!