使用Djoser我试图为我的前端生成正确的 url。我的 url 字符串中必须有与号,并且 Djoser 在将其发送到我的前端之前会格式化此 url。网址如下所示:
https://localhost:4200/activate?id=MjA&token=540-cad5f834d5508ebdd78e
但我得到的最终结果看起来像注释“amp;” & 之后:
http://localhost:4200/activate?id=MjE&token=541-c0437e0afd6261fd4833
我尝试了以下解决方案,但它们都不起作用(\u0026, {\u0026}, {\u0026:c}, &&)
:
print("https://localhost:4200/activate?id={uid}\u0026token={token}".format(uid="MjA", token="540-cad5f834d5508ebdd78e"))
print("https://localhost:4200/activate?id={uid}{\u0026}token={token}".format(uid="MjA", token="540-cad5f834d5508ebdd78e")) <-- returns KeyError: '&'
print("https://localhost:4200/activate?id={uid}{\u0026:c}token={token}".format(uid="MjA", token="540-cad5f834d5508ebdd78e")) <-- returns KeyError: '&'
注意:我不能直接format()
部分更改代码,这将由 Djoser 处理。我可以通过的部分实际上只是将字符串值分配给激活 url,就像那里一样:'ACTIVATION_URL': 'activate?id={uid}{\u0026:c}token={token}',
所以我必须在这个字符串中编写我的解决方案。
NOTE2:我在 jupiter 中尝试过,一切正常,当我这样做时,我得到了正确的 url:
print("https://localhost:4200/activate?id={uid}\u0026token={token}".format(uid="MjA", token="540-cad5f834d5508ebdd78e"))
直接添加&
返回到前端与amp;
后面相同的 url&
更新 Djoser 模板覆盖
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
...
},
]