如何在api控制器/动作上使用特定的json或xml? asp.net MVC5 / Visual studio 2015 / api 2 喜欢
public IEnumerable<Product> GetProduct()
{
// khai báo array 100 product và trả về
Product[] product = new Product[100];
for(int i = 0; i < 100; i++)
{
product[i] = new Product(i);
}
return product;
}
返回json和下一个
public IEnumerable<Product> GetProduct(int id)
{
if (id >= 999&&id<=0) return products;
// truyền id từ client đến, tạo array product có id phần từ
//sử dùng id vì mặc định url : api/controller/id
Product[] product = new Product[id];
for (int i = 0; i < id; i++)
{
product[i] = new Product(i);
}
return product;
}
返回xml?