The requested URL was not found on the server
生活随笔
收集整理的這篇文章主要介紹了
The requested URL was not found on the server
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
問題重現(xiàn):
curl的時候帶了了一個url,例如XXXX/api/resource
然后報錯
The requested URL was not found on the server
原因是什么呢?
因為部署這個web框架的python文件中沒有
類似于
@app.route('/api/resource', methods=['POST'])的語句以及相關(guān)處理函數(shù)。
從而導致客戶端請求的時候找不到。
The requested URL was not found on the server
的意思其實是,客戶端的請求中的url在服務(wù)器端的python文件中的@app.route()中找不到。
@app.route()這個東西其實有點類似于C語言中的case語句的味道,請求中附帶的鏈接和括號中的值匹配時,就執(zhí)行括號后面的相關(guān)語句。
總結(jié)
以上是生活随笔為你收集整理的The requested URL was not found on the server的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Error: no such colum
- 下一篇: Could not run curl-c