gpt4 book ai didi

Javascript AJAX 无法在 ASP.NET C# 上运行并返回 404

转载 作者:行者123 更新时间:2023-12-01 01:39:27 25 4
gpt4 key购买 nike

我有一个前端代码,它向服务器发送 POST 请求,但不会返回任何内容,因为服务器需要该信息。但是,在 Chrome 的日志中,我看到了 404谢谢,

Failed to load resource: the server responded with a status of 404 (Not Found)

以下代码向服务器发送请求:

   

var data = "hi"
var theIds = JSON.stringify(data);
var UrlFixer = '/Process/Complete';
// Make the ajax call
$.ajax({
type: "POST",
url: UrlFixer,
contentType: "application/json; charset=utf-8",
data: { ids: theIds },
dataType: "json",
success: function (result) {
alert('Yay! It worked!');
},
error: function (result) {
alert('Oh no :(');
}
});
后端(C#):

     using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Quiz3
{
public class Process
{

[HttpPost]
public static void Complete(string[] ids)
{
String[] a = ids;

}
}
}

最佳答案

您可以通过下面的代码获得发送数据的帮助。

您不必以 { ids: theIds } 形式提交字符串项,您必须将形式更改为 JSON.stringify(data) 。

var data = "Your Name";
$.ajax({
url: '/home/Complete',
type: 'POST',
data: JSON.stringify(data),
contentType: 'application/json; charset=utf-8',
success: function (data) {
alert(data.success);
},
error: function () {
alert("error");
}
});

你的类(class)不应该简单。您必须有一个 Controller 类

后端:

public class HomeController : Controller
{

[HttpPost]
public void Complete(string Name)
{
//Code ...
}
}

关于Javascript AJAX 无法在 ASP.NET C# 上运行并返回 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52551245/

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