我想在我的javascript函数中使用一个参数作为我的razor数组的索引参数。
function loadTemplate(index) {
$("#wellContainer").empty();
var htmldata = @Model.ServiceTemplateList[index].html
$("#wellContainer").append(htmldata);
}
我得到The name index does not exist in the current context
。
我做错了什么?