79549333

Date: 2025-04-01 22:48:18
Score: 4
Natty:
Report link

import type { Route } from "./+types/task";
import React, { useEffect, useState } from "react";
import type { ChangeEvent } from "react";

export default function Task() {
  const [file, setFile] = useState<File | null>(null);

  // handle file input change event
  const handleFileChange = (event: ChangeEvent<HTMLInputElement>) => {
    setFile(event.target.files?.[0] || null);
  };

  const handleFileUpload = async () => {
    if (!file) {
      alert('Please select a file to upload.');
      return;
    }

    // create a FormData object to hold the file data
    const formData = new FormData();
    formData.append('file', file);

    

    try {
      const response = await fetch('https://api.cloudflare.com/client/v4/accounts/<my-id>/images/v1', {
        method: 'POST',
        headers: {
          'Authorization': 'Bearer <my-api-key>',
        },
        body: formData,
      });

      // check if the response is ok
      const result = await response.json();
      console.log('Upload successful:', result);
    } catch (error) {
      console.error('Error during file upload:', error);
    }
  };
  return (
    <div className="block">
        <h1>File Upload</h1>
        <input type="file" onChange={handleFileChange} />
        <button onClick={handleFileUpload}>Submit</button>
    </div>
  );
}

Hello, can you help me to solve the problem I have face? Is similar too but I am in localhost reactJS of the web interface to upload the file to the cloudflare images, but the CORS error occurs. Here is the screenshot of the CORS in the browser inspection

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Foo Wei Shien