我需要在 JavaScript 函数中评估一个剃刀变量。给定以下代码:
@{var unseenNotificationsExist = false;}
@foreach(var notification in viewModel)
{
if (notification.WasSeen == false)
{
unseenNotificationsExist = true;
break;
}
}
我需要unseenNotificationsExist
像这样评估 JavaScript 中的变量:
if(@unseenNotificationsExist == true)
$('#unseenNotifCount').addClass('notifNotSeen');
但是,当我调试 JavaScript 代码时,我得到了这个:
if(True == true)
而且我收到以下错误:
Uncaught ReferenceError True 未定义