본문 바로가기
반응형

parameter3

[Vue3] Vuex 에서 parameter 가 context? {commit}? 기본 파라메터 첫번째 파라메터는 호출할 때 따로 넘기지 않아도 됩니다. fetchQuery(context, param){ return new Promise((resolve, reject) => { axios .post('/user/query', param) .then(r=>resolve(r)) .catch(error => reject(error)) }) } 이렇게 첫번째 paramter 를 context (다른 이름도 가능 ctx 등..) 로 입력하면, 아래의 property 들이 보입니다. state 를 사용하려면 context.state getters 를 사용하려면 context.getters context 가 아니라 { } 를 사용해서 필요한것만 가져올 수도 있습니다. // fetchQuery(co.. 2023. 9. 5.
[Vue] route 에서 url parameter 받아오기 VUE : Get URL Parameter Url 에서 파라메터를 가져오는 방법입니다. 1. $route.params https://hello-bryan.tistory.com/search/hello/20 이런 url 이 있을 때, router 설정 { path: '/search/:text/:size', components: { header: Header, default: SearchBody, footer: Footer } } 파라메터 접근은 $route.params 입니다. {{ $route.params }} {{ $route.params.text }} {{ $route.params.size }} --- 2. $route.query 파라메터가 ? 를 통해서 들어올 경우 https://hello-bryan.. 2021. 1. 4.
Python Decorator 파라메터 사용하기 #decorator parameter Python Decorator Parameter Python Decorator 의 개념은 이전 글에서 보시고 2020/09/03 - [Python] - Python Decorator 란? 사용 방법. #Python Decorator 바로 소스 코드 보시죠. 이번 샘플 소스는 각 메소드에서 오류 발생 시 처리를 Decorator 에서 하도록 하기위함입니다. 우선 데코레이터 없는 소스 class some_class(): def __init__(self): self.resJson = {} def setResponse(self, resJson): self.resJson = resJson def isSuccess(self): try: return self.resJson['code']==0 except Except.. 2020. 9. 3.
728x90
반응형