ExerciseDB

פרמיום
על ידי Justin | מְעוּדכָּן 9日前 | Health and Fitness
פּוֹפּוּלָרִיוּת

9.9 / 10

חֶבִיוֹן

376ms

רמת שירות

95%

Health Check

100%

חזרה לכל הדיונים

The POST method cannot connect to the api

Rapid account: Movica 4 Ns 7
movica4ns7
6ヶ月前

router.post(’/’, async (req, res) => {
const { search } = req.body;

try {
if (search) {
const exercisesData = await fetchData (‘https://exercisedb.p.rapidapi.com/exercises’, exerciseOptions);

  const searchedExercises = exercisesData.filter(
    (exercise) => exercise.name.toLowerCase().includes(search)
           || exercise.target.toLowerCase().includes(search)
           || exercise.equipment.toLowerCase().includes(search)
           || exercise.bodyPart.toLowerCase().includes(search),
  );

  res.json(searchedExercises);
} else {
  res.json([]);

Its always return blank

Rapid account: Justin W Fns XH T 6
justin-WFnsXH_t6 Commented 5ヶ月前

There is no POST methods in the api. Only GET methods.

הצטרף לדיון - הוסף תגובה למטה:

התחבר / הירשם כדי לפרסם תגובות חדשות