我正在开发一个具有剃刀语法的 MVC3 应用程序。我正在研究评论功能的部分课程。
我的代码是:
<script src="../../Scripts/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#AddCommentButton').click(function () {
$.ajax({
type: 'post',
url: '/Comment/SaveComments',
dataType: 'json',
data:
{
'comments': $('#Comment').val(), @ViewBag.EType, @ViewBag.EId
},
success: function (data) {
$("p.p12").append
$('.ShowComments').text('Hide Comments');
}
});
});
});
</script>
我试图在上面的 jQuery 中使用 ViewBag 从 View 向控制器发送参数,但它不起作用。我怎样才能做到这一点?