-1
我有一個問題,我一直堅持了一段時間。如何將參數發送到mvc控制器中的jsonresult操作?
我有一個JsonResult
方法在我的控制器(SubSubCategoriesController): -
public JsonResult GetSubCategories(int CategoryID)
{
return Json((db.SubCategories.Select(p => new { CategoryID = p.CategoryID, SubCategoryID = p.SubCatgeoryID, SubCategoryName = p.SubCategoryName })).Where(p => p.CategoryID == CategoryID), JsonRequestBehavior.AllowGet);
}
現在,我想從我的查看發送參數(類別ID)的值?我怎樣才能做到這一點? 在此先感謝
顯示您的視圖代碼,調用此方法 –
@StephenMuecke我沒有嘗試一些'HTML助手「,但沒有成功 – Medo
@Medo你需要通過javascript ajax調用。你寫了這個嗎?如果是這樣,請顯示它。 – ADyson