怎樣進入建設(shè)通網(wǎng)站外鏈推廣是什么意思
1?當(dāng)你在使用postman檢測 添加和更新功能時,報了一個500錯誤
查看idea發(fā)現(xiàn)是:
Data truncation: Out of range value for column 'id' at row 1
通過翻譯:數(shù)據(jù)截斷:表單第1行的“id”列出現(xiàn)范圍外值。一般情況下,出現(xiàn)這個問題是,忘記給IDEA中的d 添加自增
@TableId( value ="id",type= IdType.AUTO)
2 刪除功能中你發(fā)送請求,刪除第3 行數(shù)據(jù),報了405錯誤
查看idea發(fā)現(xiàn)是:
Request method 'GET' is not supported,經(jīng)過翻譯:不支持請求方法“GET”。
表示,我們請求方式錯了,要使用post
post 和get 的區(qū)別
GET請求用于獲取資源,而POST請求用于提交數(shù)據(jù)。
如果還有其他錯誤,將及時更新
?