Giter VIP home page Giter VIP logo

Comments (5)

alex-cory avatar alex-cory commented on May 14, 2024

What is the error?

from use-http.

oknoorap avatar oknoorap commented on May 14, 2024

Please check nextjs example on the codesandbox, it also doesn't works

from use-http.

alex-cory avatar alex-cory commented on May 14, 2024

Everything should be working. Please use v0.1.73. See codesandbox

from use-http.

khusamov avatar khusamov commented on May 14, 2024

@alex-cory Your example is not similar to the example of the author of the question. You have a file download by clicking. That is, client-side rendering. And server-side rendering is required.

from use-http.

khusamov avatar khusamov commented on May 14, 2024

This example differs from the example presented on the use-http website

export default () => {
  const stories = useFetch("https://hacker-news.firebaseio.com/v0/topstories.json");
  if (stories.error) return "Error";
  if (stories.loading) return "Loading";
  return <pre>{JSON.stringify(stories.data, null, 2)}</pre>;
};

In theory, a request to the hacker-news site should occur on the server. But I checked - this does not happen. The request is sent alas on the client.

from use-http.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.