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
ですか?