我有一個服務器端點驗證一些數據,如果數據驗證沒有錯誤,則返回true/false。 那麼哪個版本是正確的或更適合RESTful web服務?在身體 POST https://server.de/validate
POST數據並返回HTTP狀態代碼200,如果確認沒有錯誤或 GET https://server.de/validate?=data
發送的報頭或查詢參數數據,並在響應(狀態代碼
當我想傳遞具有對另一個模型的引用的模型時,RESTful API服務的「良好實踐」是什麼?像: class ClassModel
{
int Id
int Number
List<StudentModel> Students
}
class StudentModel
{
int Id
string Name
string Surname
ClassModel Current
我有一個簡單的項目RESTful API使用澤西框架和Netbean SDK。 我創建了一個資源,並把它放在不是默認不同的包,還指定了包中的XML文件: The resource is CustomerProfile, and package is Profile. Package "Profile" is not part of the default package 這裏是我的XML: <se