Search result

26. JSON변환

https://laravel.com/docs/6.x/eloquent-resourcesAPI를 빌드 할 때 Eloquent 모델과 실제로 애플리케이션 사용자에게 리턴되는 JSON 응답 사이에있는 변환 계층이 필요할 수 있습니다. Laravel의 리소스 클래스를...

laravelbnb

25. controller생성 api route 추가, 리소스컨트롤러

1. app/Http/Controllers/Api 디렉터리를 생성해준다. (새로운 네임스페이스)2. 컨트롤러 생성php artisan make:controller Api/BookableController3. BookableController.php 작성해준다.4. api.php 파일에 라우트...

laravelbnb

중학생들이 만든 31절 기념 사이트 - 삼일고사

31절을 기념할 수 있으면 좋겠다는 생각에서 출발한 세미콜론의 2번째 프로젝트입니다. 사이트 메인 페이지 간단하게 문제를 푸시면 됩니다.   (디자인 굳) 시작버튼을 클릭하셔서 OX 퀴즈를 풀어보세요!   https://...

프로젝트

중학생들이 만든 31절 기념 사이트 - 삼일고사

31절을 기념할 수 있으면 좋겠다는 생각에서 출발한 세미콜론의 2번째 프로젝트입니다. 사이트 메인 페이지 간단하게 문제를 푸시면 됩니다.   (디자인 굳) 시작버튼을 클릭하셔서 OX 퀴즈를 풀어보세요!   https://...

프로젝트

[Troubleshooting] CORS setting was not working when I implemented AWS API Gateway+Lambda…

This is record of troubleshooting about CORS setting when I implemented AWS server-less applicationContinue reading on Medium »

serverless api-gateway AWS infrastructure lambda

24. 본문(상세페이지) 디자인

{{ bookable.title }} {{ bookable.description }} Loading... availability & prices export default { data() { return { bookable: n...

laravelbnb

23. 본문 보기링크 만들기

1. 본문보기 링크 만들기 {{ title }} {{ description }} export default { props:{ title: String, description : String, id: Number },}2. 라우터에...

laravelbnb

22. 모든 객체 속성 props(v-bind trick)전달

1. 데이터를 자식에게 전달하는 2가지 방법BookableListItem.vue {{ title }} {{ description }} export default { props:{ title: String, description : String, id: Number...

laravelbnb

21. axios db id 불러오기

1. components 디렉토리를 삭제한다.2. js/bookable 디렉토리를 만들어준다.3. js/bookable/Bookable.vue 파일을 만들어준다. xxxexport default {}4. routes.js 설정에 추가한다.import VueRouter from "vue-route...

laravelbnb

20. Axios HTTP 요청하기

1. Bookables.vue 파일에서 임시데이터는 삭제한다.2. 액시오스로 요청하자 const request = axios.get("api/bookables"); console.log(request);브라우저로 확인해보면 bookables 모델을 가져오는 것을 볼 수...

laravelbnb