我搜索了 SO 并没有找到解决这个问题的方法。我有这样的代码:
<script>
$("AddToFavorites").Click(function() {
var apiLink = "/url/AddToFavorites?id=" + @Model.RecipeId;
$.ajax({
url: apiLink,
type: "GET"
});
});
</script>
这 。在 Model.RecipeId 中带下划线,我得到一个编译器错误:
Conditional compilation is turned off
不能在 javscript 块中使用 c# 代码吗?如果是这种情况,在这种情况下如何绕过它以使 url 动态化?
谢谢。