일단 json 에러 수정하고
block을 만들어야하니 model 수정하고 uuid넣어줘야할듯
random으로 간다
인증
token 받아와서
routing 제대로
how to use dynamic and nested route in nuxt.js? · Issue #5638 · nuxt/nuxt.js
You can't perform that action at this time. You signed in with another tab or window. You signed out in another tab or window. Reload to refresh your session. Reload to refresh your session.
https://github.com/nuxt/nuxt.js/issues/5638
index로해야하는 거였다
git flow pull request
miro에 정리

nuxt change evnet
input type="text" 에서 글 쓰지 못하게 막기 ( readonly, disabled )
위와 같은 input 개체가 있을 때, 글 쓰지 못하게 막는 방법 중, 대표적으로 readonly 와 disabled 가 있다. 이 둘 모두 input 타입의 속성이다. 따라서 다음과 같이 사용할 수 있다. using script var oEle1 = document.getElementById('txt1') ; var oEle2 = document.getElementById('txt2') ; var oEle3 = document.getElementById('txtfield1') ; var oEle4 = document.getElementById('txtfield2') ; var oEle5 = document.getElementById('pass1') ; var oEle6 = document.getElementById('pass2') ; // "readOnly" 로서 대문자임에 유의한다 .
https://jwizard.tistory.com/35

- readonly instead of diabled
Programmatic navigation: router.push and router.go in nuxtjs ? · Issue #1616 · nuxt/nuxt.js
Dismiss GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together. Sign up lock bot locked as resolved and limited conversation to collaborators Nov 3, 2018 You can't perform that action at this time. You signed in with another tab or window.
https://github.com/nuxt/nuxt.js/issues/1616
- router push
api req res
getrecord filter, 넣기

- 어마어마한 녀석을 찾아보렸다
Services | FeathersJS
Services are the heart of every Feathers application. You probably remember the service we created in the getting started chapter to create and find messages. In this chapter we will dive more into services and update the existing user service in our chat application to include an avatar image.
https://docs.feathersjs.com/guides/basics/services.html#service-methods

HTTP Methods for RESTful Services
The POST verb is most-often utilized to **create** new resources. In particular, it's used to create subordinate resources. That is, subordinate to some other (e.g. parent) resource. In other words, when creating a new resource, POST to the parent and the service takes care of associating the new resource with the parent, assigning an ID (new resource URI), etc.
https://www.restapitutorial.com/lessons/httpmethods.html
id 말고 uuid로
Custom id field does not work in get request with id · Issue #210 · feathersjs-ecosystem/feathers-sequelize
You can't perform that action at this time. You signed in with another tab or window. You signed out in another tab or window. Reload to refresh your session. Reload to refresh your session.
https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/210
update version 확인
getrecord executer 이용
연결완료
filter 목록들 list 안에 넣기
공동 함수 getrecordvalues 사용

Seonglae Cho