Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
服务器上存在具有以下属性的汽车模型
名称:字符串 uid:字符串,最大长度 200 个字符 颜色:字符串
我有一个 API 调用来获取所有汽车的列表,如下所示
/cars.json
现在我需要修改它,并添加一个参数,该参数将采用逗号分隔的汽车 uid 列表,如下所示
/cars.json?car_uids=car1,car2,car3...
我需要确保此 URL 不超过 HTTP 限制。请提出建议。