使用 commercejs 为产品分配类别时出现问题

Problem with assigning categories to products using commercejs

提问人:Vasile Midrigan 提问时间:11/4/2023 最后编辑:Brian Tompsett - 汤莱恩Vasile Midrigan 更新时间:11/4/2023 访问量:10

问:

无法为基于 Next.js 构建的电子商务项目的产品分配类别。我无法更新产品数据,按照他们的 API 参考中的说明进行操作,但我对我的方法感到困惑。

例如,以下是有关更新产品的文档:https://commercejs.com/docs/api/?shell#update-product

这是我更新它的代码:

export default async function fetchTemplate(url, method, headers, body) {
  const response = await fetch(url, {
    method: method,
    headers: headers,
    body: JSON.stringify(body),
  });
  const data = await response.json();

  return data;
}

export async function updateProductToAPI(productId, body) {
  const product = await fetchTemplate(
    `${productsURL.href}/${productId}`,
    "PUT",
    secretHeaders,
    body
  );

  return product;
}

const prod = {
  description: "some description...",
};

updateProductToAPI("prod_mOVKl493JLwprR", {
  description: "aksjfhkja",
});

不过,数据没有更新。这里有人明白这个问题吗?

JavaScript Fetch-API 电子商务 crud

评论


答: 暂无答案