我使用aurelia-fetch-client将一个Guids阵列发送到ASP.NET Core Web应用程序,但是在服务器端,模型绑定器没有提取它和{{ 1}}是notificationIds
。但是,当我通过Swagger或CURL提出请求时它会很好地绑定。
我更改了控制器方法的签名以接受字符串列表,以防万一GUID格式出现问题,但同样的问题。
JS
null
控制器方法
var body = {notificationIds : this.notifications.map(x => x.notificationId) };
console.log("Dismissing All notifications");
await this.httpClient.fetch('http://localhost:5000/api/notifications/clear',
{
method: 'POST',
body: json(body),
headers: {
'Authorization': `Bearer ${localStorage.getItem('access_token')}`,
'Accept': 'application/json',
'Content-Type': 'application/json',
'X-Requested-With': 'Fetch'
},
mode: 'cors'
}).then(response => {
if(response.status == 204){
//Success! Remove Notifications from VM
}
else{
console.log(response.status)
}
})
但是Fiddler确实
答案 0 :(得分:1)
您从JavaScript传递的对象的形状与您告诉ASP.NET框架期望的对象的形状不同。
有两种方法可以解决此问题:
选项1:
在JavaScript中,将您的正文更改为var body = this.notifications.map(x => x.notificationId);
选项2: 在c#中创建一个反映您从JavaScript传递的内容的对象。
namespace Foo
{
public class Bar
{
public List<string> NotificationIds { get; set; }
}
}
然后将控制器方法更新为以下内容:
// POST: api/Notifications
[HttpPost]
[Route("clear")]
[ProducesResponseType((int)HttpStatusCode.NoContent)]
[ProducesResponseType((int)HttpStatusCode.BadRequest)]
public async Task<IActionResult> Post([FromBody]Bar bar)
{
if (bar.NotificationIds.IsNullOrEmpty())
{
return BadRequest("No notifications requested to be cleared");
}
var name = User.Claims.ElementAt(1);
await _notificationRepository.Acknowledge(bar.NotificationIds, name.Value);
return NoContent();
}
答案 1 :(得分:1)
这里的问题是你没有发送一个GUID列表,你发送的对象的属性包含一个GUID列表。创建和使用视图模型(如peinearydevelopment所描述)或接受引用json对象的dynamic
参数。
public async Task<IActionResult> Post([FromBody] dynamic json)
{
var notificationIds = json.notifcationIds;
...