一、home页使用frame
template/home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<html lang= "en" >
<meta http-equiv= "content-type" content= "text/html" charset= "utf-8" >
<head>
<title>自动化测试平台</title>
</head>
<frameset id= "frame" rows= "*" cols= "265,*" framespacing= "0" frameborder= "yes" border= "0" >
<frame src= "../left" name= "leftframe" scrolling= "auto" noresize>
<frame src= "../welcome" name= "mainframe" scrolling= "no" noresize>
</frameset>
<noframes>
<body>
<h1>hello</h1>
</body>
</noframes>
</html>
|
二、视图文件
autotestplat/views.py
1
2
3
4
5
6
7
8
|
def home(request):
return render(request, 'home.html' )
def left(request):
return render(request, 'left.html' )
def welcome(request):
return render(request, 'welcome.html' )
|
三、urls映射文件
1
2
3
4
5
6
7
8
|
urlpatterns = [
path( 'admin/' , admin.site.urls),
path( '' , views.login),
path( 'login/' , views.login),
path( 'home/' , views.home),
path( 'left/' , views.left),
path( 'welcome/' , views.welcome),
]
|
命令行执行python manage.py runserver后,chrome浏览器打开http://127.0.0.1:8000/home/,显示如下图。打开f12,报以下错误。
四、解决方案
在setting.py中设置:
1
2
|
# 解决frame跨域问题
x_frame_options = 'allowall url'
|
到此这篇关于django解决frame拒绝问题的方法的文章就介绍到这了,更多相关django frame拒绝内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_38851970/article/details/107693052