¡¾django ѧϰ±Ê¼Ç¡¿12 Êä³ö·ÇHTMLÄÚÈÝ
Django
ÓµÓÐһЩ
±ãÀûµÄÄÚ½¨¹¤¾ß°ïÖúÄãÉú³É³£¼ûµÄ·ÇHTML
ÄÚ
ÈÝ:
RSS/Atom
¾ÛºÏÎļþ
Õ¾µãµØÍ¼ (
Ò»¸öXML
¸ñʽÎļþ,
×î³õÓÉGoogle
¿ª·¢,
ÓÃÓÚ¸øËÑË÷ÒýÇæÌáʾÏßË÷)
»ù´¡:
ÊÓͼºÍMIME
ÀàÐÍ
´ÓÒ»¸öÊÓͼ·µ»ØÒ»¸ö·Ç HTML
ÄÚ
ÈݵĹؼüÊÇÔÚ¹¹ÔìÒ»¸ö HttpResponse
Àà
ʱ,
ÐèÒªÖ¸¶¨ mimetype
²ÎÊý¡£ ͨ
¹ý¸Ä±ä MIME
ÀàÐÍ,
ÎÒÃÇ¿ÉÒÔ֪ͨä¯ÀÀÆ÷½«Òª·µ»ØµÄÊý¾ÝÊÇÁíÒ»ÖÖÀà
ÐÍ¡£
from django.http
import HttpResponse
def my_image(request):
image_data =
open(“/path/to/my/image.png”, “rb”).read()
return
HttpResponse(image_data, mimetype=”image/png”)
Éú³É CSV
Îļþ
import csv
from django.http
import HttpResponse
# Number of unruly
passengers each year 1995 – 2005. In a real application
# this would likely
come from a database or some other back-end data store.
UNRULY_PASSENGERS =
[146,184,235,200,226,251,299,273,281,304,203]
def
unruly_passengers_csv(request):
# Create the
HttpResponse object with the appropriate CSV header.
response =
HttpResponse(mimetype=’text/csv’)
response['Content-Disposition']
= ‘attachment; filename=unruly.csv’
# Create the CSV
writer using the HttpResponse as the “file.”
writer =
csv.writer(response)
writer.writerow(['Year',
'Unruly Airline Passengers'])
for (year, num) in
zip(range(1995, 2006), UNRULY_PASSENGERS):
writer.writerow([year,
num])
return response
Éú³É PDF
Îļþ
°²×° ReportLab
from reportlab.pdfgen
import canvas
from django.http
import HttpResponse
def
hello_pdf(request):
# Create the
HttpResponse object with the appropriate PDF headers.
response =
HttpResponse(mimetype=’application/pdf’)
response['Content-Disposition']
= ‘attachment; filename=hello.pdf’
# Create the PDF
object, using the response object as its “file.”
p =
canvas.Canvas(response)
# Draw things on the
PDF. Here’s where the PDF generation happens.
# S
Ïà¹ØÎĵµ£º
<table id="tableExcel" width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td colspan="5" align="center">html ±í¸ñµ¼³öµÀExcel</td>
</tr>
<tr>
<td>ÁбêÌâ1</td>
<td>ÁбêÌâ2</td>
......
Adobe·¢²¼HTML 5¿ª·¢¹¤¾ß »ùÓÚDreamweaver
Adobe¹«Ë¾ÔÚÉÏÖܾÙÐеÄGoogle I/O¿ª·¢Õß´ó»áÉÏ·¢²¼ÁËÃæÏò¿ª·¢ÕߺÍÉè¼ÆÊ¦µÄHTML 5¹¤¾ß×飬Adobe HTML5 Pack¡£
Adobe HTML5 PackÊǶÔAdobe Dreamweaver CS5µÄÀ©Õ¹£¬ÎªAdobe Creative Suite 5 Óû§ÌṩÁ˸ü¶àµÄ´´ÔìÐÔ¹¦ÄÜ¡£Óû§¿ÉÒÔ¸üÇáËɵش´½¨ºÍÓÅ»¯Æä×÷Æ·¡£
&n ......
½ñÌ죬×öÏîÄ¿µÄʱºòͻȻ¿´µ½<a target="_blank"></a>Õâ¸ö,¾ÍÍøÉϲéѯÁËÏ ¾ßÌåÈçÏ£¬»¹Ñ§µ½ÆäËû¶îÍâµÄ֪ʶ£¬(*^__^*) ÎûÎû……
targetÊÇ´ò¿ªÁ´½ÓʱÓÃʲôĿ±ê´ò¿ª£¬ÊÇÔÚд°¿ÚÖдò¿ª¾ÍÓÃtarget=_blank£¬ÔÚ¸¸´°¿ÚÖдò¿ª¾ÍÓÃtarget=_parent£¬ÔÚµ±Ç°´°¿ÚÖдò¿ª¾ÍÓÃtarget=_self,
target=_top±íʾÔÚ¶ ......
À´×Ô£ºhttp://9host.cn/html/20074221602392654.html
×î½üÔÚ¸ãÍøÒ³±à³Ì£¬×ܽáÁËframeset µÄһЩʹÓü¼ÇÉ£¬¹©´ó¼Ò²Î¿¼Å¶£¬»¹ÊÇÏÈÆÊÎöһϿò¼Ü°É£¡
¡ö ¿ò¼Ü±ê¼Ç
¡¡¡¡<FRAMESET> <FRAME>
¡¡¡¡<NOFRAMES>
¡¡¡¡<IFRAME>
¡¡¡¡ÓûÃ÷°×±¾Æª¡¾HTML³¹µ×ÆÊÎö¡¿Ö®±ê¼Ç·ÖÀ࣬Çë¿´ ¡¾±ê¼ÇÒ»ÀÀ¡¿ ......