我必须dropdown list从 a填充 a List<string>,其中键等于显示的值。我来提取这些值,我做了各种测试来连接View但没有成功。给出提取值的代码:
public async Task<IActionResult> PopulateDropDownList()
{
try
{
var items = await DocumentDBRepository<CosmosDBTelemetry>.GetDeviceIds();
List<string> deviceids = new List<string>();
foreach(var item in items)
{
deviceids.Add(item.deviceId);
}
return View();
}
catch (Exception e)
{
throw (e);
}
}
剩下的事有人能帮我吗?
慕妹3146593
一只甜甜圈
相关分类