gpt4 book ai didi

c# - MVC4 模型验证然后使用 JQuery 将 JSON post 提交到外部 URI

转载 作者:行者123 更新时间:2023-11-30 22:18:23 25 4
gpt4 key购买 nike

我需要提交一个简单的表单并验证模型。如果模型有效,我想序列化该模型并使用自定义 header 通过 POST 将其发送到外部 (https) Web 服务。最后,我将处理从请求返回的响应并显示适当的消息。

我正在完美地验证来自 Controller 的模型并序列化对象,但似乎无法找到一种方法来创建对外部 URI 的 JSON 发布请求。有没有办法使用 JQuery.ajax 或 $.post 来做到这一点。也许我缺少实现此目的的关键 ajax 参数。

谢谢

最佳答案

因此,根据对问题的澄清,您可以这样做:

定义将验证对象的 Controller 方法

public ActionResult TestMethod() {
// do server-side validation
return Json(aValidObject);
}

您向 Controller 发送一个 ajax post,这样您就可以验证您的模型,然后返回一个 json 结果。

$.ajax({
url: '@Url.Action("TestMethod")',
data: some_data,
type: "post",
success: function (result) {
// result is a valid json object
doExternalPost(result);
}
});

添加自定义标题并进行外部发布

function doExternalPost(o) {
$.ajax({
url: 'http://some_external_url',
data: o,
dataType: 'json',
beforeSend: function (xhr) {
xhr.setRequestHeader('custom_header', 'some_value');
},
success: function() {
// post is sucessful
},
error: function (xhr, errorType, exception) {
var errorMessage = exception || xhr.statusText || xhr.responseText;
alert('An error has occured: ' + errorMessage);
},
});
}

关于c# - MVC4 模型验证然后使用 JQuery 将 JSON post 提交到外部 URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16138202/

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