skip to Main Content

Json – SolidJS: "Unrecognized value"

I am able to receive the JSON value from the API path just fine. Flask Code app = Flask(__name__) CORS(app) @app.route("/cats-matches", methods=['POST']) def cats_matches(): person = {"name": "John"} #Does not work #person = [{"name": "John"}] #This works return person if…

VIEW QUESTION
Back To Top
Search