Дисциплины - Проектирование динамических страниц с помощью фрэймворка Vue.js

Запросы на бэкенд - Реальные данные без бэкенда с RapidAPI - Astronomy picture of the day

Ссылка на API - https://rapidapi.com/koukoulina001/api/astronomy-picture-of-the-day/pricing

На данный API нужно подписаться по ссылке, после чего станут доступным запросы на сервер astronomy-picture-of-the-day

Пример запроса для Vue

import {ref, onBeforeMount} from "vue";
import axios from "axios";

const picture = ref({'data':{'url':''}});
onBeforeMount(async () => {
  picture.value = await pictures();
}); 
const pictures = async () => {
  const options = {
    method: 'GET',
    url: 'https://astronomy-picture-of-the-day.p.rapidapi.com/apod',
    params: {api_key: 'nWYhQQdmCKwd0cVvrfyge124OrW4fnVOEL7QDdJH'},
    headers: {
      'X-RapidAPI-Key': '3ea575d164msh0d4f30e1df818b9p1b9782jsn2515200d115d',
      'X-RapidAPI-Host': 'astronomy-picture-of-the-day.p.rapidapi.com'
    }
  };

  let stoba = await axios.request(options)
  return stoba;
};

Количество комментариев: 0

Для того, чтобы оставить коментарий необходимо зарегистрироваться


Изображения Видео

1. Изображения, стили и файл JSON с данными https://disq.us/url?url=https%3A%2F%2Fgithub.com%2Fdanielkellyio%2Fvue-4-router-course-starter-files%2Farchive%2Frefs%2Fheads%2Fmain.zip%3AVL_V_RMWqj0IZyNcJWGjv4lMY7U&cuid=4942816
2. Bitcoin JSON https://api.coindesk.com/v1/bpi/currentprice.json
3. Vue-router https://www.vuemastery.com/blog/vue-router-a-tutorial-for-vue-3/
4. Vue 3 by Example https://github.com/PacktPublishing/-Vue.js-3-By-Example
5. Vue3 example https://github.com/mikhalkevich/vue_course
6. Vue_admin https://github.com/mikhalkevich/vue_admin
7. VueAxiosProject https://github.com/mikhalkevich/VueAxiosProject