이번 4주차에는 데이터를 관리하고 사용자들에게 데이터를 보여주는 방법을 배웠다.
서버를 직접 구축하지 않아도 서버를 사용할 수 있는 서버리스인 파이어베이스를 사용해 보았다.
① 서버에 정한 규칙(API)에 따라 데이터를 요청(Request) 한다.
② 요청을 하면 서버에서 응답(Response) 한다.(규칙에 따르지 않으면 응답하지 않는다.)
규칙의 형태는 **서버가 제공하는 도메인** 이나 www.sparta.com/getdata <-- 데이터 조회 API www.sparta.com/setData <-- 데이터 저장 API **서버가 만들어놓은 함수** 가 규칙일 수도 있다. db.ref('/like/').on('value') <-- 데이터 조회 API db.ref('/like/').set(new_like); <-- 데이터 저장 API
: 서버에서 주는 데이터 형식
{ data: {
result: {
id: 0,
name: 'seoyeon'
}
}}
① 앱이 화면에 그려진 후 데이터 준비
useEffect(()=>{
//서버 API 사용
//이 화면에서 사용 할 데이터 준비 등...
},[])
② 사용자가 버튼 클릭 시
import * as Location from "expo-location";
try {
await Location.requestPermissionsAsync();
const locationData= await Location.getCurrentPositionAsync();
console.log(locationData)
} catch (error) {
Alert.alert("위치를 찾을 수가 없습니다.", "앱을 껐다 켜볼까요?");
}
const func = async () => {
await func01()
await func02()
}
const result = await axios.get(
`http://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&appid=${API_KEY}&units=metric`
);
: 서버리스는 서버를 직접 만들지 않고 필요한 서버 기능을 제공하는 곳이다.
var firebaseConfig = {
apiKey: "AIzaSyADkaNWYGIU4844QkbpexDi_RDWqEhSUHU",
authDomain: "sparta-myhoneytip-sykim.firebaseapp.com",
projectId: "sparta-myhoneytip-sykim",
storageBucket: "sparta-myhoneytip-sykim.appspot.com",
messagingSenderId: "588256993727",
appId: "1:588256993727:web:22487649ff0ffec978410a",
measurementId: "G-8S0GW7NYK3"
};
① 리얼타임 데이터베이스를 생성하고 난 후 고유한 DB주소를 갖게된다.
https://sparta-myhoneytip-sykim-default-rtdb.firebaseio.com/
② DB주소에 데이터 저장 위치를 알려주어 데이터를 가져온다.
https://sparta-myhoneytip-sykim-default-rtdb.firebaseio.com/tip
③ 'ref('/tip')'부분에서 가지고 올 데이터의 주소를 넣는다.
firebase_db.ref('/tip').once('value').then((snapshot) => {
let tip = snapshot.val();
});
const { idx } = route.params;
firebase_db.ref('/tip/'+idx).once('value').then((snapshot) => {
let tip = snapshot.val();
setTip(tip)
});
import Constants from 'expo-constants';
const user_id = Constants.installationId;
const like = () => {
const user_id = Constants.installationId;
firebase_db.ref('/like/'+user_id+'/'+ tip.idx).set(tip,function(error){
console.log(error)
Alert.alert("찜 완료!")
});
}
firebase_db.ref('/like/'+user_id+'/'+content.idx).remove().then(function(){
Alert.alert("삭제 완료");
navigation.navigate('LikePage')
})