typescript 正在将列表解析为http.get,但获取的是不支持的媒体类型?

2j4z5cfb  于 2022-11-30  发布在  TypeScript
关注(0)|答案(1)|浏览(111)

我试图解析一个字符串列表,从Angular 到C#,但它给了我一个不支持的媒体类型。通常我对字符串类型没有困难,但对其他对象它就不工作了。我现在考虑制作一个对象,将包含字符串和列表,但不确定这是不是最好的方式去做。

public GetIncomplete(companyId: number, locationCodes: string[]) {
let params = httpParam.append('locationCodes', JSON.stringify(locationCodes));

return this.http.get<IvwStockTransfers>(`${this.URL}/get-incomplete?companyId=${companyId}`, {
  params
});

}

nkoocmlb

nkoocmlb1#

我不得不将其从输入中删除并添加

List<string> locationCodes = JsonConvert.DeserializeObject<List<string>>(HttpContext.Request.Query["locationCodes"]);

相关问题