小数点后的0&s在邮递员的回复中没有显示。但是当我在Chrome中运行相同的网址时,它可以正常工作。请查看下面的预览,让我知道实际发生了什么。 :-)。我是否需要在邮递员中进行任何配置?
public class Product
{
public decimal Qty { get; set; }
public decimal Price { get; set; }
}
xxx.Models.Product pr = new xxx.Models.Product();
pr.Price = (decimal)dtTable.Rows[i]["Price"];
pr.Qty= (decimal)dtTable.Rows[i]["Quantity"];
product.Add(pr);
看看' Price'和'数量'列/字段
Postman JSON回复
{
"CustomerID": 6136,
"ProductID": 2000000724,
"PartNo": "9012",
"Qty": 4,
"Price": 150.6
}
Chrome中的XML输出
<Product>
<CustomerID>6136</CustomerID>
<ProductID>2000000724</ProductID>
<PartNo>9012</PartNo>
<Qty>4.00</Qty>
<Price>150.60</Price>
</Product>