首頁  >  文章  >  web前端  >  將 Cloudinary 整合到 Next.js 應用程式中

將 Cloudinary 整合到 Next.js 應用程式中

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-09-21 16:32:17416瀏覽

Integrate Cloudinary in a Next.js application

了解 Cloudinary 及其定價。

1. 建立一個Cloudinary帳戶

在 Cloudinary 註冊並建立一個新帳戶(如果您沒有)。

2.安裝Cloudinary SDK

您可以使用npm或yarn安裝Cloudinary SDK:

npm install cloudinary

3. 配置Cloudinary

您可以建立一個設定檔來儲存您的 Cloudinary 憑證。將它們保存在環境變數中是一個很好的做法。

在專案根目錄中建立一個 .env.local 檔案並新增您的 Cloudinary 憑證:

CLOUDINARY_URL=cloudinary://<api_key>:<api_secret>@<cloud_name>

</cloud_name></api_secret></api_key>

4. 在您​​的應用程式中設定 Cloudinary

// utils/cloudinary.js
import { v2 as cloudinary } from 'cloudinary';

cloudinary.config({
  cloud_name: process.env.CLOUDINARY_CLOUD_NAME,
  api_key: process.env.CLOUDINARY_API_KEY,
  api_secret: process.env.CLOUDINARY_API_SECRET,
});

export const uploadImage = async (file) => {
  try {
    const result = await cloudinary.uploader.upload(file, {
      folder: 'your_folder_name', // optional
    });
    return result.secure_url; // Return the URL of the uploaded image
  } catch (error) {
    console.error('Cloudinary upload error:', error);
    throw new Error('Upload failed');
  }
};

5. 使用上傳功能

// pages/api/upload.js
import { uploadImage } from '../../utils/cloudinary';

export default async function handler(req, res) {
  if (req.method === 'POST') {
    const { file } = req.body; // Assume you're sending a file in the body

    try {
      const url = await uploadImage(file);
      res.status(200).json({ url });
    } catch (error) {
      res.status(500).json({ error: error.message });
    }
  } else {
    res.setHeader('Allow', ['POST']);
    res.status(405).end(`Method ${req.method} Not Allowed`);
  }
}

6. 從前端上傳

// components/ImageUpload.js
import { useState } from 'react';

const ImageUpload = () => {
  const [file, setFile] = useState(null);
  const [imageUrl, setImageUrl] = useState('');

  const handleFileChange = (event) => {
    setFile(event.target.files[0]);
  };

  const handleSubmit = async (event) => {
    event.preventDefault();
    const formData = new FormData();
    formData.append('file', file);

    const res = await fetch('/api/upload', {
      method: 'POST',
      body: formData,
    });

    const data = await res.json();
    if (data.url) {
      setImageUrl(data.url);
    } else {
      console.error('Upload failed:', data.error);
    }
  };

  return (
    
{imageUrl && 將 Cloudinary 整合到 Next.js 應用程式中}
); }; export default ImageUpload;

7. 測試您的設置

運行您的 Next.js 應用程式並測試圖像上傳功能。

結論

您現在應該在 Next.js 應用程式中整合了 Cloudinary!如果您有任何具體要求或需要進一步定制,請隨時詢問!

以上是將 Cloudinary 整合到 Next.js 應用程式中的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn