목록분류 전체보기 (185)
Mi Lugarcito
const type = typeText == 'JPG' ? 'count' : (typeText == 'GIF' ? 'count' : 'storage')
https://vuejs.org/v2/api/#ref API — Vue.js Vue.js - The Progressive JavaScript Framework vuejs.org 자식의 component 요소를 부모의 page가 참조하기 위해서 사용한다. 이를 사용하면 작업할때마다 새로고침 해서 결과물을 확인할 필요가 없이 바로 적용되는것을 알 수 있다. downOkBtn() { this.downloadStatus = false; this.saveStatus = 'complete'; this.$refs.StudioWorkList.load_data(); },
You have an error in your SQL syntax; check the manual that corresponds to your MYSQL server version for the right syntax to use near... 에러 https://henerd.tistory.com/24 [SQL 에러] You have an error in your SQL syntax; check the manual that corresponds to your MYSQL server version for the right You have an error in your SQL syntax; check the manual thatcorresponds to your MYSQL server version for ..
https://doogle.link/axios-%EC%82%AC%EC%9A%A9%EC%8B%9C-%ED%8F%BC-%EB%8D%B0%EC%9D%B4%ED%84%B0-%EC%A0%84%EC%86%A1%ED%95%98%EA%B8%B0-%ED%8C%8C%EC%9D%BC-%EC%97%85%EB%A1%9C%EB%93%9C/ axios 사용시 폼 데이터 전송하기 (+파일 업로드) | 두글 블로그 axios 의 post 기능은 기본적으로 폼 데이터 전송방식을 사용하지 않기 때문에 서버쪽에서 파라메터를 받는 부분을 수정할 수 없는 상황이라면 문제가 됩니다. 보통 외부 API 서비스를 사용할 때 많 doogle.link https://forteleaf.tistory.com/entry/axiospost-%EC%97%90-..
https://yoo-hyeok.tistory.com/98 [MySQL] Join 깔끔한 이해와 사용법 상단의 그림 정말 정리가 잘 되어 있습니다. 처음 접할 때 보고도 저게뭔가 싶었는데 초심자의 입장에서 이해하기 쉽도록 설명해보려합니다. 1. LEFT JOIN A, B 테이블 중에 A값의 전체와, A의 KEY 값 yoo-hyeok.tistory.com https://pearlluck.tistory.com/46 DB JOIN 정리(INNER/LEFT/RIGHT/OUTER) join(조인) 둘 이상의 테이블을 연결해서 데이터를 검색하는 방법 연결하려면 테이블들이 적어도 하나의 컬럼을 공유하고 있어야함 이 공유하고 있는 컬럼을 PK 또는 FK값으로 사용 종류 1. INNER pearlluck.tistor..
Page 에서 Component로 데이터 전달하기 Page Component
https://medium.com/@bouncewind0105/request-param-query-body-%EC%9D%98-%EC%B0%A8%EC%9D%B4%EC%A0%90-2e7e4fddd8b9 Request param,query, body 의 차이점 Request 객체는 API를 컨트롤하기 위한 메소드를 셋 담고 있다. medium.com Front 에서 데이터 다르게 받아오는방법 추가 const test = await this.$axios.get("/guest-shop/main-category"); console.log(test.data.data ,' test.data.data')// [{}, {}, {}...] const tabs = (await this.$axios.get("/guest-sho..
https://crystalidea.com/macs-fan-control/download Macs Fan Control Download for macOS & Windows (Boot Camp) crystalidea.com
git checkout -b 브런치이름 //firt do commit -> do pull -> do push git add . or git add --all git commit -m "message" git pull origin "branch name" git push origin "branch name" //git pull git pull origin //git branch 생성 후 특정 branch로 push 하기 git init git remote add origin https://github.com/~.git git pull origin 브런치이름 git checkout -b 브런치이름 git add . git commit -m "어쩌구" git push origin 브런치이름 https://ve..
https://steemit.com/develope/@snowsprout/git-git-pull-error-your-local-changes-to-the-following-files-would-be-overwritten-by-merge [git] git pull 에러 발생시 ( error: Your local changes to the following files would be overwritten by merge ) — Steemit 간혹 여러 소스를 관리하다보면 아래와 같이 git pull 을 사용할때 에러가 발생할 수 있습니다. $ git pull origin master error: Your local changes to the following files would be overwritten ..