gpt4 book ai didi

c# - ApiController 没有收到我的日期时间?

转载 作者:行者123 更新时间:2023-11-30 21:00:06 26 4
gpt4 key购买 nike

我的 ApiController 没有收到包装在 View 模型中的 DateTime 对象。

这是我的 Controller 的内容。

public class FlowApiController : ApiController
{
// GET api/flowapi
public async Task<IEnumerable<FlowItemViewModel>> PostNewItems(SinceNullableViewModel input)
{
var since = input.Since; //since will be null for some reason

...

return something;
}
}

然后是我的 jQuery AJAX 调用。我尝试了很多不同的东西,但没有运气。这是我目前拥有的。

$.ajax("/api/FlowApi/NewItems", {
method: "POST",
data: JSON.stringify({
Since: new Date()
})
});

最后,这是我的 SinceNullableViewModel

public class SinceNullableViewModel
{
public DateTime Since { get; set; }
}

我在这里做错了什么?

Chrome 发送数据如下:

enter image description here

最佳答案

你已经很接近了,只需再添加一个 header contentType 来告诉服务器你正在以 JSON 格式发送:

$.ajax("/api/FlowApi/NewItems", {
method: "POST",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({
Since: new Date()
})
});

关于c# - ApiController 没有收到我的日期时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15151864/

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