PURECODER_IR Telegram 1106
🔥چالش طراحی API

یه دونه کلاس Order به صورت زیر داریم:

class Order{

List<OrderLine> _lines = [];

void AddProduct(Product product, int quantity){

}

}

class OrderLine{

final Product product;
final int quantity;
}

class Product{
final String name;
}


حالا میخوایم یه API برای اضافه کردن یه ایتم جدید (item یا Line) به Order طراحی کنیم.

بنظرت کدوم یک از API های زیر بهتره؟

1️⃣
POST: api/orders/{id}
body
{
product: 1,
quantity: 4
}


2️⃣
PATCH: api/orders/{id}
body
{
product: 1,
quantity: 4
}


3️⃣
POST: api/orders/{id}/lines
body
{
product: 1,
quantity: 4
}


4️⃣
PUT: api/orders/{id}/lines
body
{
product: 1,
quantity: 4
}


@purecoder_ir
🔥3



tgoop.com/purecoder_ir/1106
Create:
Last Update:

🔥چالش طراحی API

یه دونه کلاس Order به صورت زیر داریم:

class Order{

List<OrderLine> _lines = [];

void AddProduct(Product product, int quantity){

}

}

class OrderLine{

final Product product;
final int quantity;
}

class Product{
final String name;
}


حالا میخوایم یه API برای اضافه کردن یه ایتم جدید (item یا Line) به Order طراحی کنیم.

بنظرت کدوم یک از API های زیر بهتره؟

1️⃣
POST: api/orders/{id}
body
{
product: 1,
quantity: 4
}


2️⃣
PATCH: api/orders/{id}
body
{
product: 1,
quantity: 4
}


3️⃣
POST: api/orders/{id}/lines
body
{
product: 1,
quantity: 4
}


4️⃣
PUT: api/orders/{id}/lines
body
{
product: 1,
quantity: 4
}


@purecoder_ir

BY Pure Coder


Share with your friend now:
tgoop.com/purecoder_ir/1106

View MORE
Open in Telegram


Telegram News

Date: |

It’s yet another bloodbath on Satoshi Street. As of press time, Bitcoin (BTC) and the broader cryptocurrency market have corrected another 10 percent amid a massive sell-off. Ethereum (EHT) is down a staggering 15 percent moving close to $1,000, down more than 42 percent on the weekly chart. Select “New Channel” Members can post their voice notes of themselves screaming. Interestingly, the group doesn’t allow to post anything else which might lead to an instant ban. As of now, there are more than 330 members in the group. How to Create a Private or Public Channel on Telegram? Those being doxxed include outgoing Chief Executive Carrie Lam Cheng Yuet-ngor, Chung and police assistant commissioner Joe Chan Tung, who heads police's cyber security and technology crime bureau.
from us


Telegram Pure Coder
FROM American