0

我有以下模板标签

@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 对象不支持项目分配错误”

有任何想法吗 ?

4

1 回答 1

0

删除'

<li><a href="{% address foo %}">foo</a></li>
于 2013-06-29T07:57:26.113 回答