在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>
如何顯示內部文本框的數量值
您需要在對象(模型)中解析視圖。 – Webbanditten
**返回查看(plan1); **您錯過了數據。 –
謝謝...... –