🌐 Update Chinese translation for `docs/zh/docs/tutorial/query-params-str-validations.md` (#12928)

This commit is contained in:
史雲昔 (Vincy SHI) 2024-12-16 01:10:14 +08:00 committed by GitHub
parent 940c0fb9fb
commit d3360406c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ q: Union[str, None] = Query(default=None, min_length=3)
/// info
如果你之前没见过 `...` 这种用法:它是一个特殊的单独值,它是 <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">Python 的一部分并且被称为「省略号」</a>
如果你之前没见过 `...` 这种用法:它是一个特殊的单独值,它是 <a href="https://docs.python.org/zh-cn/3/library/constants.html#Ellipsis" class="external-link" target="_blank">Python 的一部分并且被称为“Ellipsis”意为省略号 —— 译者注)</a>
Pydantic 和 FastAPI 使用它来显式的声明需要一个值。
///