我开发了一个非常简单的 WebApi 来测试一些 Knockout.js 功能。IMO 它应该可以正常工作,但是当我通过 Fiddler 向 Api 发出 GET 请求时,它根本不会返回任何 JSON。
我正在使用 MVC4 的 JSON 默认序列化程序。
这是我的模型...
public class Page
{
public string Name { get; set; }
public List<Control> Controls { get; set; }
}
public abstract class Control
{
public string Name { get; set; }
public abstract string SayHi();
}
public class Form : Control
{
public override string SayHi()
{
return string.Format("Hi, I'm form {0}", Name);
}
}
public class Datagrid : Control
{
public override string SayHi()
{
return string.Format("Hi, I'm datagrid {0}", Name);
}
}
...这是我的控制器...
public class PageController : ApiController
{
static readonly ISimplePageRepository _repository = new TestPageRepository();
// GET /api/page
public IEnumerable<Page> GetAllPages()
{
return _repository.GetAll();
}
}
...以防万一,这是我的回购...
public class TestPageRepository : ISimplePageRepository
{
private List<Page> _pages = new List<Page>();
public TestPageRepository()
{
Add(new Page {Name = "pagina1", Controls = new List<Control>() {new Datagrid() {Name = "laTablita"}}});
Add(new Page {Name = "pagina2", Controls = new List<Control>() {new Form() {Name = "elFormito"}}});
}
public Page Add(Page item)
{
_pages.Add(item);
return item;
}
public IEnumerable<Page> GetAll()
{
return _pages.AsQueryable();
}
}
提前致谢!