WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Alternating 503 Errors and 201 Success When Uploading Images #203

@yoshi-pi

Description

@yoshi-pi

When uploading an image as shown below, a 503 Service Unavailable error is returned. However, if the browser is reloaded and the image is uploaded again, a 201 Created response is returned. Reloading the browser again results in a 503 Service Unavailable error. This pattern repeats. Why is this happening? I'd like it to always return 201.

html

<input type="file"/>

javascript

let input = document.querySelector('input');
input.addEventListener('change', () => {
  let file = input.files[0];
  fetch('https://jsonplaceholder.typicode.com/posts', {
    method: 'POST',
    body: file,
  });
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions