我使用 RAML 工具创建了 REST API 模拟。如何在我的 JSON 对象响应超媒体链接中返回绝对路径?
有没有办法将baseUri包含到我的示例 JSON 对象中以创建绝对路径?
现在我"/users/ff33c2a1-b877-4415-9e62-115b8239c787"
的 JSON 对象中有相对路径:
{
"name": "John Smith",
"email": "john.smith@sample.com",
"status": "pending",
"_links": [
{
"rel": "self",
"href": "/users/ff33c2a1-b877-4415-9e62-115b8239c787"
}
]}
实际上我想要从我的baseUri值中获取根的绝对路径。
例如路径应该是这样的"http://mocksvc.mulesoft.com/mocks/a2683439-a5dc-409c-801a-c771042970fb/mocks/31e46658-b4ce-4f40-cc91-c4fd50f7a2d8/v1/users/ff33c2a1-b877-4415-9e62-115b8239c787"
我尝试使用类似的东西:
"href": "{baseUri}/users/ff33c2a1-b877-4415-9e62-115b8239c787"
或不带引号
"href": {baseUri}/users/ff33c2a1-b877-4415-9e62-115b8239c787
但以上都没有奏效。
我正在使用RAML 0.8。