Django招摇特殊字符转义文档

时间:2018-05-16 07:04:02

标签: django escaping swagger docstring

我使用django和swagger。我在django函数中写了doc字符串,如下所示:

/?first_name__icontains=saeed&age__gte=20. 

但昂首阔步向他们展示了这个

enter image description here

我怎样才能逃脱像&在django和swagger?

编辑:

我的代码在django视图的docstring中 enter image description here

Swagger的结果 enter image description here

1 个答案:

答案 0 :(得分:1)

在代码块中呈现为&

&是Swagger UI 2.x中的一个错误,它在UI 3.3.0中得到修复: https://github.com/swagger-api/swagger-ui/issues/2700

您需要更新Swagger UI版本。