我使用djangorestframework用下面的代碼:request.META不包含頭
class RegistrationView(APIView):
def post(self, request, format=None):
print self.request.META.get('API_KEY')
,並返回None
(其他頭如Content-Type
或User-Agent
都OK)。
但是,這頭肯定是在請求存在(這關鍵是本地數據庫而已,所以它的確定它貼在這裏):
爲什麼?
嗯,不起作用。這是request.META內容:http://pastebin.com/GFRVyv4H – arts777