gpt4 book ai didi

javascript - ASP.NET MVC 中的拖放区错误消息

转载 作者:行者123 更新时间:2023-11-29 15:35:56 26 4
gpt4 key购买 nike

使用 ASP.NET MVC,我返回一个错误,当提交的应用程序/表单丢失某些东西时,我在 dropzone 文件上得到一个漂亮的红色 “X”,但错误消息是 < strong>“[对象对象]”:

我的 Controller :

        if (some error)
{
Response.ClearHeaders();
Response.ClearContent();
Response.StatusCode = 500;
Response.StatusDescription = "Internal Error";
return Json(new { Message = "Missing Something", JsonRequestBehavior.AllowGet });
}

我的 Javascript:

<script>
//File Upload response from the server
Dropzone.options.dropzoneForm = {
maxFilesize: 20,
init: function() {
this.on("complete", function(data) {
// ??????? var res = data.xhr.responseText ;
});
}
};
</script>

最佳答案

这是我的解决方案

<script>
//File Upload response from the server
Dropzone.options.dropzoneForm = {
maxFilesize: 20,
init: function() {
this.on("error", function(data, errorMessage, xhr) {
$(".alertError").show();
$(".alertSuccess").hide();
$(".errMessage").text(errorMessage.Message);
});

this.on("processing", function(data) {
$(".alertError").hide();
$(".alertSuccess").hide();
});


this.on("success", function (data) {
$(".alertError").hide();
$(".alertSuccess").show();
});
}
};
</script>

关于javascript - ASP.NET MVC 中的拖放区错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29137794/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com