“Ermöglichen Sie X_Frame_Options Django” Code-Antworten

Ermöglichen Sie X_Frame_Options Django

X_FRAME_OPTIONS = 'ALLOW-FROM https://example.com/'
Obedient Osprey

Ermöglichen Sie X_Frame_Options Django

from django.http import HttpResponse
from django.views.decorators.clickjacking import xframe_options_exempt

@xframe_options_exempt
def ok_to_load_in_a_frame(request):
    return HttpResponse("This page is safe to load in a frame on any site.")
Obedient Osprey

Ermöglichen Sie X_Frame_Options Django


from django.http import HttpResponse
from django.views.decorators.clickjacking import xframe_options_exempt

@xframe_options_exempt
def ok_to_load_in_a_frame(request):
    return HttpResponse("This page is safe to load in a frame on any site.")

Black Buzzard

Ähnliche Antworten wie “Ermöglichen Sie X_Frame_Options Django”

Fragen ähnlich wie “Ermöglichen Sie X_Frame_Options Django”

Weitere verwandte Antworten zu “Ermöglichen Sie X_Frame_Options Django” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen