想要将从Django数据库检索到的数据添加到我的html选项标签中

时间:2019-04-05 07:09:44

标签: html django

我想从Django DB中检索数据并将其添加到HTML Option标签中以显示下拉列表

views.py

private boolean isAcceptable(byte [] doc){
    //code or logic for accept 100Kb to 4Mb 
    return doc.length >= 100 * 1024 && doc.length <= 4 * 1024 * 1024;
}

finalproject.html

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表中的数据。

实际输出:选项框为空。

0 个答案:

没有答案