无法显示Django后端的图像

发布于 2025-01-17 08:38:49 字数 790 浏览 0 评论 0原文

我是从Django发送我的照片,这是我的JWT Access_Token有效载荷的一部分,目的是检索渲染,甚至在我的React应用程序中更新该图像。现在,我专注于获取图像以显示我的自定义用户模型。这是我解码时的有效负载的样子:

{
  "token_type": "access",
  "exp": ***,
  "iat": ***,
  "jti": "***",
  "user_id": 1,
  "username": "test",
  "first_name": "",
  "last_name": "",
  "country": "",
  "city": "",
  "bio": "",
  "photo": "\"profile/2022/03/27/testuserpic.png\""
}

我尝试使用此代码访问图像

let { user,logOutUser } = useContext(AuthContext)
            <img
              alt="..."
              className="avatar border-gray"
              src={`http://127.0.0.1:8000/media/${user.photo}`}
            />

,但要获得错误:

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

I am sending my photo from django as part of my JWT access_token payload with the intention to retrieve render and even update that image in my React app. Right now I'm focused on getting the image to show my custom user model. This is what my payload looks like when I decode it:

{
  "token_type": "access",
  "exp": ***,
  "iat": ***,
  "jti": "***",
  "user_id": 1,
  "username": "test",
  "first_name": "",
  "last_name": "",
  "country": "",
  "city": "",
  "bio": "",
  "photo": "\"profile/2022/03/27/testuserpic.png\""
}

I have tried to access the image using this code

let { user,logOutUser } = useContext(AuthContext)
            <img
              alt="..."
              className="avatar border-gray"
              src={`http://127.0.0.1:8000/media/${user.photo}`}
            />

but getting the error:

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文