- 下面url_for(endpoint,
**kwargs
),其中这个**kwargs
关键字不知道怎么传参,能按照下面的代码扩展下这个关键字怎么传参吗?
{% macro nav_link(endpoint, text) -%}
<li class="nav-item {% if request.endpoint
and request.endpoint == endpoint %}active{% endif %}">
<a class="nav-link" href="{{ url_for(endpoint, **kwargs) }}">{{ text }}</a>
</li>
{%- endmacro %}