Frontend Mentor - URL 단축 API 랜딩 페이지
목차
Overview
My process
개요
과제는 shrtcode API과 통합하여 단축 URL을 만들고 디자인과 같이 표시하는 것입니다.
도전
사용자는 다음을 수행할 수 있어야 합니다.
form
가 제출되면 오류 메시지가 표시됩니다.input
필드가 비어 있습니다연결
내 프로세스
내장:
내가 배운 것
localStorage
에 빈 어레이 생성localStorage.setItem('data', '[]');
localStorage
.let param = this.state.value;
fetch(`https://api.shrtco.de/v2/shorten?url=${param}`)
.then((res) => res.json())
.then((result) => {
// if localStorage 'data' is null make an empty array
if (localStorage.getItem("data") == null) {
localStorage.setItem("data", "[]");
}
// get localStorage 'data' as var old_data
var old_data = JSON.parse(localStorage.getItem("data"));
// if fetch is ok return localStorage 'data' push result
if (result.ok === true) {
old_data.push(result);
}
// set localStorage 'data' to new data from push result
localStorage.setItem("data", JSON.stringify(old_data));
// set state items equal to result, linkStorage to localStorage 'data'
this.setState({
items: result,
linkStorage: JSON.parse(localStorage.getItem("data"))
});
})
.catch((error) => console.log("error", error));
작가
Reference
이 문제에 관하여(Frontend Mentor - URL 단축 API 랜딩 페이지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nabillatrisnani/frontend-mentor-url-shortening-api-landing-page-3oa9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)