Python27 demo 访问html
程序员文章站
2022-04-01 22:06:17
...
工程名untitle
应用名dd
访问:http://localhost:8000/f/
显示f.html文件内容
urls.py--配置请求
views.py
templates目录下面f.html
应用名dd
访问:http://localhost:8000/f/
显示f.html文件内容
urls.py--配置请求
from django.conf.urls import patterns, include, url from django.contrib import admin from dd.views import current_datetime from dd.views import get_html from django.shortcuts import render_to_response urlpatterns = patterns('', # Examples: # url(r'^$', 'untitled.views.home', name='home'), # url(r'^blog/', include('blog.urls')), url(r'^admin/', include(admin.site.urls)), url(r'^time/', current_datetime), url(r'^f/', 'dd.views.get_html'),# 该方式和下面的方式都可以调用get_html方法 url(r'^f1/', get_html),# )
views.py
from django.http import HttpResponse from django import template from django.template import Context, Template from django.shortcuts import render_to_response,render import datetime def get_html(request): #return render(request,'sub//f1.html') return render(request,'f.html') #展示f.html文件 def current_datetime(request): now=datetime.datetime.now() html="<html><body>%s</body></html>" %now return HttpResponse(html)
templates目录下面f.html
上一篇: 微软开源其任务自动化处理工具Mayhem
推荐阅读
-
超链接访问过后hover样式就不出现的问题_html/css_WEB-ITnose
-
如何加快web 页面的访问速度_html/css_WEB-ITnose
-
结合 PHP 使用 HTML 表单访问单个和多个表单值
-
使用iphone或者ipad访问网站出现该网站app应用的html代码
-
网站某个目录中全部是html文件,如何控制用户必须登录才能访问这些静态文件?
-
网站某个目录中全部是html文件,怎么控制用户必须登录才能访问这些静态文件
-
PHP正则表达式过滤html标签属性(DEMO)_PHP
-
linux定时任务访问页面代替quartz集群_html/css_WEB-ITnose
-
网站网页生成.shtml访问无法显示_html/css_WEB-ITnose
-
html iframe标签在手机UC浏览器中访问异常问题_html/css_WEB-ITnose