heroku net::ERR_BLOCKED_BY_RESPONSE,在由Coep 200默认为相同的原始数据之后,不是相同的原始数据

g0czyy6m  于 2022-11-13  发布在  其他
关注(0)|答案(3)|浏览(1276)

请帮助解决这个问题。我正在使用一个MERN应用程序。在应用程序中,我使用API将图像上传到cloudnary。然后我使用secure_url在前端上传图像。它可以在localhost上工作,但不能在heroku上工作,即图像不会上传
本地主机:enter image description here
黑六:enter image description here
浏览器控制台中的响应:enter image description here
其他图像:enter image description hereenter image description here打印机
upload.js

const express = require("express");
const router = express.Router();
const cloudinary = require("cloudinary");
const { verifyTokenTeacher } = require("./verifyToken");

cloudinary.config({
  cloud_name: process.env.CLOUD_NAME,
  api_key: process.env.CLOUD_API_KEY,
  api_secret: process.env.CLOUD_API_SECRET,
});

// upload image
router.post("/upload", verifyTokenTeacher, (req, res) => {
  try {
    console.log(req.files);
    if (!req.files || Object.keys(req.files).length === 0)
      return res.status(400).json({ msg: "Fayl yuklanmangan" });

    const file = req.files.file; // oxiridagi file bu query parametr
    if (file.size > 1024 * 1024 * 2)
      return res.status(400).json({ msg: "Fayl hajmi 2mb dan kam bo'lsin" });

    // if file no image
    if (
      file.mimetype !== "image/jpeg" &&
      file.mimetype !== "image/jpg" &&
      file.mimetype !== "image/png"
    )
      return res.status(400).json({ msg: "Faqat JPEG va PNG rasm yuklang!" });

    cloudinary.v2.uploader.upload(
      file.tempFilePath,
      { folder: "test1" },
      async (err, result) => {
        if (err) {
          throw err;
        }

        return res
          .status(200)
          .json({ public_id: result.public_id, url: result.secure_url });
      }
    );
  } catch (err) {
    res.status(500).json(err.message);
  }
});

在前端使用图像url:

<img src={question.image.url} alt="Rasm"  />

问题模型:Question.js

const mongoose = require("mongoose");
    const questionSchema = mongoose.Schema(
      {
        title: {
          type: String,
          required: true,
        },
        themeId: {
          type: String,
          required: true,
        },
        image: {
          type: Object,
          default: null,
        },
      },
      {
        timestamps: true,
      }
    );
    
    module.exports = mongoose.model("Question", questionSchema);

创建问题路由器:questions.js

router.post("/", verifyTokenTeacher, async (req, res) => {
  try {
    await Theme.findById(req.body.themeId);
    const newQuestion = new Question(req.body);
    const savedQuestion = await newQuestion.save();
    res.status(201).json(savedQuestion);
  } catch (err) {
    res.status(500).json({ msg: err.message });
  }
});
wgx48brx

wgx48brx1#

我得到了同样的错误,而从cloudinary获取图像。
我通过在图像标记中添加crossorigin="anonymous"解决了该错误。
只需在您的img标签中添加crossorigin="anonymous",如下所示:

<img crossorigin="anonymous" src="https://example.com/image.jpg">

这将解决该错误。

new9mtju

new9mtju2#

在我的例子中,它是由Cross-Origin-Embedder-Policy: require-corp引起的(可能与另一个头冲突,不确定是哪一个)。
通过将替换为Cross-Origin-Embedder-Policy: same-origin进行修复。

gojuced7

gojuced73#

我看你得到的错误是“net::ERR_BLOCKED_BY_RESPONSE.在默认为相同的原始地址之后不是相同的原始地址,由代码200”
您是否尝试添加此标头以告诉客户端浏览器允许从Cloudinary域获取资源?
访问控制-允许-来源:https://res.cloudinary.com/
如果这不能解决问题,请在http://support.cloudinary.com上提交一个票证,我们将进行更深入的研究。

相关问题