ExerciseDB

FREEMIUM
(Ким) 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.

Приєднуйтесь до обговорення — додайте повідомлення нижче:

Вхід / Реєстрація, щоб публікувати нові повідомлення