作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
出于某种原因, str.split() 在 python 的 fastapi 包中没有按预期运行。
为简化起见,我已经包含了 FastAPI 的一个简单用例,但 str.split() 似乎只删除了我打算拆分的字符,而不是返回一个列表,我可以通过它们的索引访问单个项目。高度简化的可重现代码:
### fastapi example
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/alignment/{item_id}")
def read_item(item_id: str, q: str):
my_list = q.split("+") ### the critical line in question
return {"people" : my_list[0]}
>>> uvicorn main:app --reload
{"people":"abracadabra django musical"}
{"people" : "abracadabra"}
### str.split example
q = "abracadabra+django+musical"
my_list = q.split("+")
a = my_list[0]
print(a)
>>> abracadabra # Actual result as expected
### str.split example
中(上图)它没有任何\或\,所以我认为没有必要。 最佳答案
如果您替换 split("+")
,我相信您的代码会起作用与 split(" ")
. +
查询字符串中的字符表示 space当 url 编码时; FastAPI 将在传递给 View 函数之前对查询字符串进行 url 解码。
关于python - 为什么 str.split() 不适用于 fastapi str 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58895328/
我是一名优秀的程序员,十分优秀!