REST API:对2个不同的操作使用相同的动词和资源

时间:2018-04-23 09:52:04

标签: rest api

对于REST API,我们是否可以在同一资源上使用相同的HTTP谓词来获得2个不同的操作?如果是这样,我们该如何进行?

例如,我发送了2个请求 var schema = { "comuni" : [ { "istat" : { "type" : "Integer" }, "code" : { "type" : "string" }, "comune" : { "type" : "string" }, "provincia" : { "type" : "string" }, "cap" : { "type" : "integer" }, "latitude" : { "type": "Number" }, "longitude" : { "type": "Number" }, "soppresso": { "tyoe" : "boolean" }, "regione" : { "type" : "string" }, "parte_italia": { "type": "string" }, "is_provincia": { "type": "integer" }, "nome_provincia": { "type": "string" } }] } pm.test("JSON schema validation", function() { var paperwork = pm.response.json(); var result = tv4.validate(paperwork, schema, false, true); if (result !== true) { console.log('Schema validation failed:', tv4.error); } /*console.log(tv4.error.dataPath);*/ pm.expect(result).to.be.true; console.log(JSON.stringify(result)); }); ,但是对于第一个请求我要检索所有用户,而在第二个我只想要第一个用户。

感谢您的帮助。

0 个答案:

没有答案