HttpResponse 和 render 对于views中返回模板

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.shortcuts import render
from django.shortcuts import HttpResponse

# Create your views here.


def login(request):

    f = open('templates/login.html', mode='r')
    data = f.read()


    return HttpResponse(data)
点赞