0
urls.pyDjango的:URL斜線問題
url(r'^v1/files/$', MyFileView.as_view(), name='api-upload'),
url(r'^v1/files/$', MyFileView.as_view(), name='api-view-all'),
views.py
class MyFileView(APIView):
def post():
pass
def get():
pass
我的問題是:爲什麼POST api/v1/files
作品像GET api/v1/files/
?我以爲POST api/v1/files
應該返回404.有什麼問題嗎?
UPDATE
但api/v1/files/<id>
沒有這個問題。 api/v1/files/<id>/
將返回404 感謝
@Iserni,Intertesting。以前從未知道。謝謝 – BAE
嘿。我也沒有問過自己。你不能猜測頭部劃痕:http://stackoverflow.com/q/39848396/1428679 :-D – LSerni
但'api/v1/files/'沒有這個問題。 ''api/v1/files/ /'將返回404。 –
BAE