了解 Cloudinary 及其定價。
在 Cloudinary 註冊並建立一個新帳戶(如果您沒有)。
您可以使用npm或yarn安裝Cloudinary SDK:
npm install cloudinary
您可以建立一個設定檔來儲存您的 Cloudinary 憑證。將它們保存在環境變數中是一個很好的做法。
在專案根目錄中建立一個 .env.local 檔案並新增您的 Cloudinary 憑證:
CLOUDINARY_URL=cloudinary://<api_key>:<api_secret>@<cloud_name> </cloud_name></api_secret></api_key>
// 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'); } };
// 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`); } }
// 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 (
運行您的 Next.js 應用程式並測試圖像上傳功能。
您現在應該在 Next.js 應用程式中整合了 Cloudinary!如果您有任何具體要求或需要進一步定制,請隨時詢問!
以上是將 Cloudinary 整合到 Next.js 應用程式中的詳細內容。更多資訊請關注PHP中文網其他相關文章!