1

我开始使用 REST,并试图了解如何将遵循 RPC 样式的 Web 方法映射到 REST 样式。

public PerformanceResponse GetPerformance(int lineId, int maxNumberOfEntries, bool ascending)

这是我唯一与性能相关的操作,它只是从数据库中提取一些信息。

感谢您的帮助。

4

2 回答 2

1

以下是我设计 API 的方式:

  • 创建性能控制器
  • 有一个带有参数的 Get 方法
  • 设计网址为/Performance/{lineId}?maxNumberOfEntries={max}&ascending={asc}
于 2012-07-09T17:56:51.260 回答
0

http://example.com/Performance/1/2/0

其中 1 是 lineID,2 是 maxNumber,0 是升序

答案?
(您的问题有点模糊 - 请说明)

于 2012-07-08T20:16:17.137 回答