我正在尝试在模板下面编写,但执行后,我在控制台中收到无效模板错误。
@using MYApplication.EnumContract
@model MYApplication.Models.CustomerModel
<script type="text/kendo-x-tmpl" id="EntitiesTemplate">
<table>
<tr>
# if ((int)CustomerStatus.APPROVED == custStatus && CustomerModel.UserRole == 1) { #
<td>
APPROVED
</td>
# }
else {#
<td>
NOT APPROVED
</td>
#}
#
</tr>
</table>
</script>
请让我知道,我们如何检查模板内的枚举和模型...