如何在Django中创建一个用于将用户重定向到输入的地址的表单?

huangapple go评论121阅读模式
英文:

How can make a form for redirecting user to the entered address in Django?

问题

我有点困惑,不知道应该如何制作一个简单的表单,该表单接受用户输入的网站 URL,并在点击提交按钮后进行重定向。我应该使用UserCreationForm吗?如果是这样,我应该使用哪些字段?还是应该创建一个自定义表单?

英文:

I am a little confused as to how should I be working on making a simple form that takes a website url input from a user and redirects on clicking the submit form button. Should I be using the UserCreationForm , if so , what fields should I be using for the same. Or should I be creating a custom form for the same .

答案1

得分: 1

以下是翻译好的部分:

模板:

  1. <form action="{% url 'my_view' %}" method="POST">
  2. {% csrf_token %}
  3. <input name="url" type="url">
  4. <input type="submit">
  5. </form>

视图:

  1. @login_required
  2. def my_view(request):
  3. if request.method == "POST":
  4. return redirect(request.POST.get("url"))
  5. else:
  6. return render(request, "my_template.html")
英文:

Here is a (simplified) example:

Template:

  1. &lt;form action=&quot;{% url &#39;my_view&#39; %}&quot; method=&quot;POST&quot;&gt;
  2. {% csrf_token %}
  3. &lt;input name=&quot;url&quot; type=&quot;url&quot;&gt;
  4. &lt;input type=&quot;submit&quot;&gt;
  5. &lt;/form&gt;

View:

  1. @login_required
  2. def my_view(request):
  3. if request.method == &quot;POST&quot;:
  4. return redirect(request.POST.get(&quot;url&quot;))
  5. else:
  6. return render(request, &quot;my_template.html&quot;)

答案2

得分: 0

如果您打算使用文本字段,那么应避免使用表单。创建一个普通的HTML表单,其中包含一个文本输入字段,然后在后端获取该值。

HTML:mytemplate.html

  1. <form method="post">
  2. {% csrf_token %}
  3. <input type="url" name="url" placeholder="https://example.com" />
  4. <input type="submit" value="提交" />
  5. </form>

views.py

  1. from django.shortcuts import redirect, render
  2. def redirect_to_url(request):
  3. if request.method == "POST":
  4. url = request.POST.get('url')
  5. return redirect(url)
  6. else:
  7. return render(request, 'mytemplate.html', {})

这是一个非常基本的实现。您还可以验证URL是否存在。

  1. import requests
  2. from django.shortcuts import redirect, render
  3. from django.http import HttpResponse
  4. def redirect_to_url(request):
  5. if request.method == "POST":
  6. url = request.POST.get('url')
  7. resp = requests.get(url)
  8. if resp.status_code == 200: # 其他验证和条件
  9. return redirect(url)
  10. return HttpResponse('无效的URL')
  11. else:
  12. return render(request, 'mytemplate.html', {})

了解更多关于input type url和Django redirect的信息。

英文:

If you are going to use a text field then you should avoid forms. Create a normal HTML form with a input type text and get that value in backend.

HTML: mytemplate.html

  1. &lt;form method=&quot;post&quot;&gt;
  2. {% csrf_token %}
  3. &lt;input type=&quot;url&quot; name=&quot;url&quot; placeholder=&quot;https://example.com&quot; /&gt;
  4. &lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;
  5. &lt;/form&gt;

views.py

  1. from django.shortcuts import redirect, render
  2. def redirect_to_url(request):
  3. if request.method == &quot;POST&quot;:
  4. url = request.POST.get(&#39;url&#39;)
  5. return redirect(url)
  6. else:
  7. return render(request, &#39;mytemplate.html&#39;, {})

This is a very basic implementation. You can also verify if the url exists.

  1. import requests
  2. from django.shortcuts import redirect, render
  3. from django.http import HttpResponse
  4. def redirect_to_url(request):
  5. if request.method == &quot;POST&quot;:
  6. url = request.POST.get(&#39;url&#39;)
  7. resp = requests.get(url)
  8. if resp.status_code == 200: # some other validation and conditions
  9. return redirect(url)
  10. return HttpResponse(&#39;Invalid URL&#39;)
  11. else:
  12. return render(request, &#39;mytemplate.html&#39;, {})

For more about input type url and Django redirect.

huangapple
  • 本文由 发表于 2020年1月3日 13:52:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/59573793.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定