在Eve中,如何创建集合的子资源并保持父集合的端点?

在Eve中,如何创建集合的子资源并保持父集合的端点?,第1张

在Eve中,如何创建集合的子资源并保持父集合的端点

您可以设置3个不同的终结点,而其中两个则消耗相同的数据库资源(图像)。像这样:

images_schema: {  "game_id": {    "type": "string",    "required": True,  },  "title": {    "type": "string",    "required": True,  },}games = {  "schema": {    "title": {      "type": "string",      "required": True    },    "name": {      "type": "string",      "required": True    },  }}images = {  "schema": images_schema,  "url": "images"  # not really needed}games_images = {  "schema": images_schema,  "url": "games/<regex('[a-f0-9]{24}'):game_id>/images",  "datasource": {"source": "images"}}

作为参考,请参阅多个API端点,一个数据源。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5668703.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存