我试图解析一个字符串列表,从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
});
}
1条答案
按热度按时间nkoocmlb1#
我不得不将其从输入中删除并添加