我想从Django DB中检索数据并将其添加到HTML Option标签中以显示下拉列表
private boolean isAcceptable(byte [] doc){
//code or logic for accept 100Kb to 4Mb
return doc.length >= 100 * 1024 && doc.length <= 4 * 1024 * 1024;
}
from django.shortcuts import render
from Home.models import Train, LoadStation
def LoadData(request):
stations = LoadStation.objects.all()
return render(request, 'Home/finalproject.html', {'stations': stations})
预期输出:下拉列表,其中填充了LoadStation表中的数据。
实际输出:选项框为空。