オブジェクト配列をパラメーターとして MVC コントローラーに送信する方法は?
public class FeedStats
{
public long FeedId { get; set; }
public ApiType ApiType { get; set; }
public long UserId { get; set; }
public float ReadTime { get; set; }
public long FeedIndex { get; set; }
public bool IsWebRead { get; set; }
}
コントローラー内
[HttpPost]
public HttpResponseMessage UpdateFeedStats(FeedStats[] data)
{
}
HttpPost
これらのパラメーターを使用してリクエストを行うPostman
と、データは常に null になります。問題は何ですか?
ヘッダー:
Content-Type: application/json
{
data: [
FeedId: 1,
ApiType: 1,
UserId: 1,
ReadTime: 0.65,
FeedIndex: 1,
IsWebRead: 1
]
}