gpt4 book ai didi

c# - 传递两个模型查看

转载 作者:可可西里 更新时间:2023-11-01 07:49:24 25 4
gpt4 key购买 nike

<分区>

我是 mvc 的新手,尝试通过用它做一个小项目来学习它。我有一个页面应该显示特定日期的货币和天气。所以我应该通过货币模型和天气模型。我已经通过货币模型并且工作正常但我不知道如何通过第二个模型。并且大多数教程都展示了如何只传递一个模型。

你们能告诉我怎么做吗?

这是我当前发送货币模型的 Controller Action

public ActionResult Index(int year,int month,int day)
{
var model = from r in _db.Currencies
where r.date == new DateTime(year,month,day)
select r;

return View(model);
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com