我应该在查询我的 WebAPI 端点之前包含一个斜杠吗?
Should I include a slash before a query for my WebAPI endpoint?
我正在为我的应用程序创建 API 个端点。以下哪种端点格式更'standard'?在下面的示例中,我将从我的用户 table.
returning 用户 ID 'john'
https://localhost:33170/api/users?id=john
或
https://localhost:33170/api/users/?id=john
仅供参考,以下端点将 return 所有用户:
https://localhost:33170/api/users
已确定it doesn't matter if the trailing slash is on or not。
我不知道有哪个框架会以不同的方式处理这两种情况...这两条路线在我使用过的每个框架中都是相同的。
我正在为我的应用程序创建 API 个端点。以下哪种端点格式更'standard'?在下面的示例中,我将从我的用户 table.
returning 用户 ID 'john'https://localhost:33170/api/users?id=john
或
https://localhost:33170/api/users/?id=john
仅供参考,以下端点将 return 所有用户:
https://localhost:33170/api/users
已确定it doesn't matter if the trailing slash is on or not。
我不知道有哪个框架会以不同的方式处理这两种情况...这两条路线在我使用过的每个框架中都是相同的。