【问题标题】:Image cannot be found AJAX(ASP.NET MVC)找不到图像 AJAX(ASP.NET MVC)
【发布时间】:2017-04-13 17:16:24
【问题描述】:

我有 AJAX 调用

这是代码

<script>
$(document).ready(function () {
    email_update();
});

function email_update() {
    $.ajax({
        url: '@Url.Action("EmailsList", "Questions")',
        contentType: 'application/json; charset=utf-8',
        type: 'GET',
        dataType: 'json',
        processData: false,
        success: function (result) {
            var email = result;
            // console.log(result[0].Name);
            for (var i = 0; i <= email.length - 1; i++) {
                var emailHTML = '<div style="margin-left: 25px; margin-top: 10px;>' +
                    '<b style="margin-left: 10px;">' +(i + 1) +
                    '<b style="margin-left:20px;">' + result[i].Email + '</b>'+
                    '<b>' +
                    '<b style="margin-left: 20px;">' +
                    result[i].Name +
                    '</b>' + '<a style="float: right; margin-right: 20px;">' +
                    '<img src="~/Images/Edit.png">' +
                    '</a>' +
                    '<a style="float: right; margin-right: 20px;">' +
                    '<img src="~/Images/Delete.png">' +
                    '</a>' +
                    '</div>';
                $(".email_list").append(emailHTML);
            }
        }
    });
}

但我遇到了麻烦

加载资源失败:服务器响应状态为 404(未找到)

但图片在文件夹中

我之前有这个代码(不是在 AJAX 中)<a style="float: right; margin-right: 20px;" href='@Url.Action("Edit_mail", "Questions", new {id = item.Individ_Id})'> <img src='@Url.Content("~/Images/Edit.png")'/> </a>

我的错误在哪里?

【问题讨论】:

  • 在 ajax 之前是否有效,因为路径似乎是个问题

标签: jquery asp.net ajax asp.net-mvc


【解决方案1】:

这是因为~ 在 JavaScript/HTML 中没有意义。在 Razor 中 @Url.Content() 将虚拟路径转换为绝对路径。

根据您的示例代码使用它或将引用存储在变量中并稍后使用它

var editImage = '@Url.Content("~/Images/Edit.png")'

用法

'<img src="' + editImage + '">'

【讨论】:

  • 谢谢老哥的帮助!
猜你喜欢
  • 1970-01-01
  • 2011-07-01
  • 2011-07-09
  • 2022-01-16
  • 1970-01-01
  • 1970-01-01
  • 2011-08-03
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多