fix cors origin
This commit is contained in:
parent
a2d859494b
commit
6c0e77891f
|
@ -84,7 +84,9 @@ class PublicDeviceWebView(TemplateView):
|
||||||
def get_json_response(self):
|
def get_json_response(self):
|
||||||
device_data = self.get_result()
|
device_data = self.get_result()
|
||||||
# device_data = self.get_device_data()
|
# device_data = self.get_device_data()
|
||||||
return JsonResponse(device_data)
|
response = JsonResponse(device_data)
|
||||||
|
response["Access-Control-Allow-Origin"] = "*"
|
||||||
|
return response
|
||||||
|
|
||||||
def get_result(self):
|
def get_result(self):
|
||||||
components = []
|
components = []
|
||||||
|
|
Loading…
Reference in a new issue