Iam使用asp.net mvc4,並在訪問viewbag.price時遇到一些問題。
這是我在做什麼: -
[HttpPost]
public ActionResult FillModel(int id)
{
var vehModel = db.Vehicle_Model.Where(vehMod => vehMod.MakeID == id).ToList().Select(vehMod => new SelectListItem() { Text = vehMod.Model, Value = vehMod.pkfModelID.ToString() });
ViewBag.Price = 100;
return Json(vehModel, JsonRequestBehavior.AllowGet);
}
我打電話上面用下面: -
$.ajax({
url: '@Url.Action("FillModel","Waranty")',
type: 'post',
data: { id: id },
dataType: 'json',
success: function (data) {
$('#ddModel').empty();
$.each(data, function (index, val) {
var optionTag = $('<option></option>');
$(optionTag).val(val.Value).text(val.Text);
$('#ddModel').append(optionTag);
});
var a = '@ViewBag.Price';
},
error: function() {
alert('Error');
}
});
,但我不能夠訪問ViewBag.Price。
任何人都知道原因?
感謝
hmmmmm沒有得到我的問題的任何迴應.....雖然我簡單地通過返回額外的參數,而不是設置viewbag,但仍然奇怪爲什麼不能獲得viewbag值在我看來.....我的解決方案..... – user2456467
var a = @ ViewBag.Price; 移除viewbag.price周圍的冒號。 – Savaratkar