如何将index.html页面的href id捕获到我的views.py文件中,并使用它在Django中呈现我的第二个html页面

时间:2014-09-02 20:22:24

标签: python html django hyperlink

我的HTML代码

<html>
{% for d in name %}
<li><a id = {{d}} alt={{d|slugify }} href ="/hindi_guitarchords/{{d}}" 
class = "click">{{d}}</a> </li>
{% endfor %}
</html>

url.py代码

url(r'^hindi_guitarchords/(?P<d>.*)/$', 'guitarchordsapp.views.hindi_guitarchords'),

views.py

def hindi_guitarchords(request, d):
    msg = request.POST.get('d')
    #msg= get_object_or_404(Post,slug=d)

    return render_to_response('hindi_guitarchords.html',{'song_name':msg})

让我知道我是否遗漏了某些东西

1 个答案:

答案 0 :(得分:0)

msg = request.POST.get('d')替换为msg = d