在asp.net MVC中,获取模型值,但同时传递以查看未显示的内容。
控制者
public ActionResult Index(plan plan1)
{
var myCharge = new StripeChargeCreateOptions();
string apiKey = "";
var stripeClient = new StripeClient(apiKey);
var planService = new StripePlanService(apiKey);
StripePlan response = planService.Get("1234");
plan1.Amount = (response.Amount).ToString();
return View();
}
视图
<div>
@Html.TextBoxFor(m => m.Amount)
</div>
如何在文本框中显示金额值
最佳答案
希望您的View与Model类紧密绑定(实例为plan1
)。因此,您需要在return语句中指定模型
return View(plan1);
关于c# - 从 Controller 传递时未显示数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44905872/