此JavaScript代码用于将视图中的字符串传递给控制器中的操作:
<script type="text/javascript">
$(document).on('click', 'a', function () {
$.ajax({
type: 'POST',
url: '/brandsOfACategory',
contentType: 'application/json; charset:utf-8',
data: JSON.stringify(this.id)
})
});
</script>
控制器中的 brandsOfACategory
代码:
public ActionResult brandsOfACategory(string id)
{
return View();
}
由于id
为空,因此代码无法正常工作。
有人可以指导吗?
答案 0 :(得分:0)
代码逻辑和语法看起来不错。要测试:
如果删除警报,则第4步和第5步将消失。