Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
パラメータを含む GET リクエストの URL を受け入れたいと考えています。何かのようなもの:
/api/objects/[object_type]/?feature=1
このようなものを受け入れるための URL を構成するにはどうすればよいですか?
ビューはこれをすぐにサポートします。あなたができるパラメータを取得するにはrequest.GET.get('feature')、あなたの例では1を返します。
request.GET.get('feature')
試す
url(r'^/api/objects/\/?feature=(?P<number>.*)...),