我在 ASP.Net MVC 页面中有这个 Javascript
onComplete: function (id, fileName, responseJSON) {
if (responseJSON.success) {
$('#divImgs ul').append(
$('<li>').append(
$('<a>').attr('href',
'@Url.Action("DeleteFile", "Upload", new { id = fileName})').append(
$('<img>').attr('src', responseJSON.filePath))
));
}
}
这给出了编译错误
The name 'fileName' does not exist in the current context
为什么我不能访问fileName
中的变量@Url.Action
?