我有一个 URI:/lessons/{language}/{type}
我想在我的蓝图中有更多具有不同参数 {language} 和 {type} 的模拟请求响应。在我看来,这对于 GET 方法是不可能的。
我的想法是: GET /lessons/cs/easy 将返回:
[{
"id": 1, "title": "Střední řada: s, l"
}, {
"id": 2, "title": "Střední řada: g, h"
}]
并且 GET /lessons/de/easy 将返回:
[{
"id": 1, "title": "Mittle words: s, l"
}, {
"id": 2, "title": "Mittle words: g, h"
}]
这是我的语法(在下面),它不起作用。
这是它在预览中的样子。