0

我正在尝试找出如何配置ember.js 框架,以便它的所有查找、创建、更新、RestAdapter删除功能匹配到GET,或点击我在我创建的 SampleHanlder.ashx 文件ASP.NET 网络应用程序。POSTPUTDELETE

指南中描述的配置使 url 同样命中:

<domain>/SampleHandler.ashx/people/1

但是/people/1SampleHandler.ashx 之后的路径我不知道如何在处理程序中使用它。如果处理程序可以使用此路径,那是如何完成的?

有没有办法配置RestAdapter或 Ember.js 一般用于我商店的其余功能 ashx 处理程序?

4

1 回答 1

0

Ember expects that each model (or model collection) has a unique endpoint within your API. You'd probably want to look at extending the RESTAdapter to create a new adapter that does what you need.

于 2013-10-04T17:56:42.137 回答