Django学习记录(二)

Mark一下

1、使用Render返回网页时,

def Home(request):
    return render(request, "home.html")

如果home.html中有中文的话,使用TextPad和普通的文本编辑器编译时,将会导致网页无法显示。解决方法为,使用notePad++或者VsCode进行编辑并保存,即可正常使用。

2、判断请求是Post还是Get的方法。

from django.shortcuts import render
from django.core.mail import send_mail #给单人发送邮件时使用
from django.core.mail import send_mass_mail #给多人发送邮件时邮件时使用
from django.http import HttpResponse
def SendEmail(request):
    if request.method == 'GET':
        try:
            send_mail('subject','email Content','[email protected]', ['[email protected]'], fail_silently=False)
        except Exception as e:
            return HttpResponse('发送邮件失败。失败原因:' + str(e))
        else:
            return HttpResponse('发送邮件成功。')
    else:
        return HttpResponse('请使用GET方法')

 

你可能感兴趣的:(Python)