自2005年以來,我一直在使用WordPress,將所有網站切換到Django Projects。這是我的第一個Django項目,將有多個Web應用程序。如何在Django中使用iframe進行生產?
我正在使用Visual Studio Preview 2017創建我的Django項目。 在我的項目中,我設置了一個主要的Web應用程序,該應用程序包含保存主要HTML頁面的項目urls.py,view.py,model.py和templates文件夾。這個主要的網絡應用程序將連接到項目中的其他網絡應用程序。
我知道web應用程序開發的目標是讓一個人留在web應用程序上。據說,我需要添加博客和附屬頁面到我的項目。我知道如何做到這一點的唯一方法是iframe。
我在這個網站上發現了一個選項,但它沒有任何意義,除了添加|安全的網址。 [1]:generate iframe from django tag
我看了上面的鏈接和我有的問題,如果我需要在我的代碼中使用序列化程序爲我的項目Web應用程序?
我的代碼是:
阿菲的Web應用程序
web_host_python.html
<html>
<head><title>Web Host Python Hosting</title></head>
<body>
{{ whpaff.html | safe }}
</body>
</html>
whpaff.html
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<iframe src=" https://www.webhostpython.com/billing/aff.php?aff=69"
style="border:0px #ffffff none;" name="web_host_python"
scrolling="no" frameborder="1" marginheight="0px"
marginwidth="0px"
height="100%" width="100%" allowfullscreen></iframe>
</body>
</html>
urls_affi.py
from django.conf.urls import url
from . import views
urlpattens = [
url(r'^$', views.home),
]
view_affi.py
from django.shortcuts import render, HttpResponse
# Create your views here.
def web_host_python(request):
return render(request, 'affi/web_host_python.html')
項目主要應用
url.py
"""
Definition of urls for affiliate_sites.
"""
from datetime import datetime
from django.conf.urls import url
import django.contrib.auth.views
import app.forms
import app.views
# Uncomment the next lines to enable the admin:
# from django.conf.urls import include
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = [
# Examples:
url(r'^affi$', views_affi.web_host_python, name='web_host_python),
url(r'^$', app.views.home, name='home'),
url(r'^contact$', app.views.contact, name='contact'),
url(r'^about', app.views.about, name='about'),
url(r'^login/$',
django.contrib.auth.views.login,
{
'template_name': 'app/login.html',
'authentication_form': app.forms.BootstrapAuthenticationForm,
'extra_context':
{
'title': 'Log in',
'year': datetime.now().year,
}
},
name='login'),
url(r'^logout$',
django.contrib.auth.views.logout,
{
'next_page': '/',
},
name='logout'),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
# url(r'^admin/', include(admin.site.urls)),
view.py
"""
Definition of views.
"""
from django.shortcuts import render
from django.http import HttpRequest
from django.template import RequestContext
from datetime import datetime
def web_host_python(request):
"""Renders the home page."""
assert isinstance(request, HttpRequest)
return render(
request,
'affi/web_host_python.html'
{
'title':'affi/web_host_python.html',
'year':datetime.now().year,
}
)
def home(request):
"""Renders the home page."""
assert isinstance(request, HttpRequest)
return render(
request,
'app/index.html',
{
'title':'Home Page',
'year':datetime.now().year,
}
)
def contact(request):
"""Renders the contact page."""
assert isinstance(request, HttpRequest)
return render(
request,
'app/contact.html',
{
'title':'Contact',
'message':'Your contact page.',
'year':datetime.now().year,
}
)
def about(request):
"""Renders the about page."""
assert isinstance(request, HttpRequest)
return render(
request,
'app/about.html',
{
'title':'About',
'message':'Your application description page.',
'year':datetime.now().year,
}
)
是任何的這種正確我做了什麼?
或者是否有替代和更簡單的方法來做在Django的iframe?
謝謝你的所有建議。
馬庫斯
David, 您正在談論whpaff.html文件嗎? 而這個代碼將它整個頁面? Marcus – Marcus