Django将功能添加到模板中的按钮

时间:2022-06-22 23:00:49

I dont know how can I add function form views.py to atribute action in my template. I'd like if I'll click in button then my page refreshs and comment add to datebase.

我不知道如何在我的模板中添加函数表单views.py到属性操作。我想如果我点击按钮然后我的页面刷新和评论添加到datebase。

Part of my template:

我的模板的一部分:

    <form action = '???' method = "post">
    {{ formularz.as_p}}
    <input type="submit" value="Submit" />
</form>

Parte of views.py

参见views.py

   def ShowNewses(request):
        newses = News.objects.filter(status = 'p')
        return render_to_response('news.html', {'news_set': newses})

def ArchiveNews(request,topic,year, month, day):
    news = News.objects.filter(date__year = int(year), date__month = int(month), date__day = int(day),topic = topic)
    comments = Comments.objects.all()
    formularz = CommentsForm()
    return render_to_response('knews.html', {'news': news[0],'comments': comments, 'formularz': formularz}) 

def AddComment(request):
    L = request.META['PATH_INFO'].split('/')
    if request.POST:    
        k = CommentsForm(request.POST)
        k.save()
    return HttpResponseRedirect(reverse('ArchiveNews', kwargs = {'request' = request, 'year' = L[3], 'month' = L[4], 'day' = L[5]}))

AddComment is function which I want in my button. ArchiveNews is induced when i choose news which will be in new page

AddComment是我想要在我的按钮中的功能。当我选择将在新页面中的新闻时,会引发ArchiveNews

EDIT part of urls.py

编辑urls.py的一部分

url(r'^news/$', ShowNewses),
url(r'^news/(?P<topic>.+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})', ArchiveNews),

I updated here 'part of views.py' I added ShowNewses

我在这里更新了'views.py'的一部分我添加了ShowNewses

2 个解决方案

#1


1  

You need to add AddComment to your urls.py file. Then, assuming your app is named "myapp" you would use this in your template: {% url myapp.views.AddComment %}

您需要将AddComment添加到urls.py文件中。然后,假设您的应用被命名为“myapp”,您可以在模板中使用它:{%url myapp.views.AddComment%}

#2


0  

I used url name. My actualy files: views.py

我使用了网址名称。我的实际文件:views.py

def ArchiveNews(request, topic, year, month, day):
    print request.POST
    news = News.objects.filter(date__year = int(year), date__month = int(month), date__day = int(day),topic = topic)
    comments = Comments.objects.all()
    formularz = CommentsForm()
    return render_to_response('knews.html', {'news': news[0], 'comments': comments, 'formularz': formularz, 'topic': topic, 'year': year, 'month': month,'day': day})   


def AddComment(request,topic,year,month,day):
    print 'foo'
    if request.POST:
        k = CommentsForm(request.POST)
        k.save()
    return HttpResponseRedirect(reverse('ArchiveNews', args = (topic,year,month,day)))

And part of my template:

我的模板的一部分:

<form action = {% url addcomment topic year month day %} method = "post">
        {{ formularz.as_p}}
        <input type="submit" value="Submit" />
    </form>

part of urls.py:

urls.py的一部分:

url(r'^news/(?P<topic>.+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})', ArchiveNews),
url(r'^news/(?P<topic>.+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})', AddComment, name = 'addcomment'),

EDIT: I updated my files

编辑:我更新了我的文件

#1


1  

You need to add AddComment to your urls.py file. Then, assuming your app is named "myapp" you would use this in your template: {% url myapp.views.AddComment %}

您需要将AddComment添加到urls.py文件中。然后,假设您的应用被命名为“myapp”,您可以在模板中使用它:{%url myapp.views.AddComment%}

#2


0  

I used url name. My actualy files: views.py

我使用了网址名称。我的实际文件:views.py

def ArchiveNews(request, topic, year, month, day):
    print request.POST
    news = News.objects.filter(date__year = int(year), date__month = int(month), date__day = int(day),topic = topic)
    comments = Comments.objects.all()
    formularz = CommentsForm()
    return render_to_response('knews.html', {'news': news[0], 'comments': comments, 'formularz': formularz, 'topic': topic, 'year': year, 'month': month,'day': day})   


def AddComment(request,topic,year,month,day):
    print 'foo'
    if request.POST:
        k = CommentsForm(request.POST)
        k.save()
    return HttpResponseRedirect(reverse('ArchiveNews', args = (topic,year,month,day)))

And part of my template:

我的模板的一部分:

<form action = {% url addcomment topic year month day %} method = "post">
        {{ formularz.as_p}}
        <input type="submit" value="Submit" />
    </form>

part of urls.py:

urls.py的一部分:

url(r'^news/(?P<topic>.+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})', ArchiveNews),
url(r'^news/(?P<topic>.+)/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})', AddComment, name = 'addcomment'),

EDIT: I updated my files

编辑:我更新了我的文件