django templatetag“unicode对象不支持项目分配错误”

时间:2013-06-29 07:54:03

标签: python django django-templates

我有以下模板标签

@register.inclusion_tag('profile/profile_list.html', takes_context=True)
def address(context, sort_parameter):
    request = context['request']
    sort = request.GET.get('s') or None
    path = request.get_full_path()

    if sort_parameter in path:
        pass
    elif not sort_parameter in path:
        if "?" in path:
            return (path + "&s=%s" % sort_parameter)
        else:
            print (path + "?s=%s" % sort_parameter)
            return (path + "?s=%s" % sort_parameter)
    elif sort:
        if sort != sort_parameter:
            return path.replace('s=%s' % str(sort), '')

和模板为:

<li><a href="{% address 'foo' %}">foo</a></li>

我进入了打印/path/?s=foo

但作为回报,我得到“”unicode对象不支持项目分配错误“

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

删除'

<li><a href="{% address foo %}">foo</a></li>