gpt4 book ai didi

python - Django:通过 GET 请求、POST 请求或在 URL 中搜索?

转载 作者:太空宇宙 更新时间:2023-11-04 00:35:26 26 4
gpt4 key购买 nike

我正在 Django 中实现一个搜索表单。我可以执行 POST 或 GET 请求。每个都有它们的用例(POST 请求,如果我想更改服务器上的数据,GET 请求,如果我只想从服务器获取数据)。

  • 通过 POST 请求(搜索关键字在 URL 中不可见,而是在 request.POST 中的字典中);缺点:我无法为搜索添加书签
  • 通过 GET 请求(搜索关键字在 URL 中可见,例如 localhost:8000/books/?author=schultz);缺点(?):?author=schultz 部分无法由 URL 处理程序处理(请参阅下面的 [2])。我需要在我的 View 函数中读取来自 request.GET.get("author", None) 的数据。
  • 或直接在 URL 中这样:localhost:8000/books/search/author/schultz ?

[1] 中的作者说,Django 处理 URL 的首选方式不是通过 GET(像这样:/category_check_view/?item_id=2,而是像这样 /category_check_view/2)

如果我想像这样实现搜索:localhost:8000/books/author/schultz,那么我将不得不处理一个 GET 请求,读取参数 ?author=schultz 通过 request.GET.get("author", None) 并且在我看来从这个 URL localhost:8000/books 做一个重定向(我在其中有一个表单和一个 GET 请求)到这个 localhost:8000/books/author/schultz

这种方法有意义吗?还是我把事情复杂化了?只需将其保留在 GET 请求中即可实现我的搜索表单?


[1] Yuval Adamthis post 中说那个

GET params are not processed by the URL handler, but rather passed directly to the GET param dict accessible in a view at request.GET.

The Django (i.e. preferred) way to do handle URLs is the first one.

[2] Django docs: What the URLconf searches against

最佳答案

首先,GET 用于读取数据,POST 用于创建。由于搜索是一种读取数据的形式,因此您将使用 GET!

这将我们带到了 url 的问题上。正如您提到的,在 Django 中有两种通过 url 传递参数的不同方法:

  1. 参数作为 url 的一部分:

    您的网址正则表达式必须如下所示:

    url(r'^books/author/(?P<author>\w+)/$', 
    'yourviewname',
    name='author_search'
    )

    您的 URL 将具有以下形状:/books/author/author_name_here

  2. 获取参数:

    您的网址正则表达式可以如下所示:

    url(r'^books/$', 
    'yourviewname',
    name='book_search'
    )

    您的 URL 将具有以下形状:/books/?author=author_name_here&other=other_param

这主要取决于您要使用的内容。引用a great answer :

Don't obsess over the beauty of your URIs, they are a tool not a piece of art.
- @Quentin -


有关上述两种方式的简短实现示例,请查看 this link

关于python - Django:通过 GET 请求、POST 请求或在 URL 中搜索?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44261640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com