Javascript – Reactjs fetch not working with python fast api
I have a fast api get function in python: from fastapi import FastAPI app = FastAPI() @app.get("/json/") async def json_re(): data = [ { "id": 1, "name": "abc", "username": "Bret", "email": "[email protected]", } ] return data if __name__ == "__main__":…