这是一个django项目,views.py是
from django.shortcuts import render
from django.db import connection
def get_cursor():
return connection.cursor
def index(request):
cursor = get_cursor()
cursor.execute("select id,name,author from book")
books = cursor.fetchall()
return render(request, 'index.html')
几分钟,它可以工作,但是现在出错了,它无法从mysql获取数据,我不知道这是否是我的系统故障。