슬프지만

 

bootstrap-vue 에서 지원하는 dropdown의 select 이벤트는 없는거같다 ..

 

(내가 못찾았을수도 있음)

 

그래서 v-model로 쓸라고했는데

 

역시 지원하지 않는다 .. 너무슬픈이야기 ..

 

하지만 방법은 있지

 

 

 <b-dropdown-item v-for="option in ddTestVm.options" 
                    :key="option.value" 
                    :value="option.value"
                    @click="ddTestVm.ddTestSelectedOption = option.value">

 

dropdown item을 v-for로 돌리고

 

@click 에서 v-model 역할을 해주면 된다

 

 

 

 

출처 : https://stackoverflow.com/questions/47124770/vue-js-select-dropdown-selected-item-vm-binding-not-working-bootstrap-vue

 

vue.js select / dropdown selected item vm binding not working (bootstrap-vue)

I am trying to create a simple vue that binds the selected item from a select/dropdown to a property in the vm. I haven't been able to find a clear and simple example of how this is down when using...

stackoverflow.com

 

'frontend' 카테고리의 다른 글

[Axios] Axios의 catch()문에서 Status Code 받기  (0) 2019.04.15

 

 

 

catch(error =>) {

  console.log(error)

}

 

로 찍으면

 

 

Error: Request failed with status code 422
    at createError (app.js:6765)
    at settle (app.js:29489)
    at XMLHttpRequest.handleLoad (app.js:6600)

 

단순 string만 반환하는데

 

return 된 object를 받고 싶으면

 

 

axios.post('/formulas/create', {
	name: "",
	parts: ""
})
.then(response => { 
	console.log(response)
})
.catch(error => {
    console.log(error.response)
});

 

 

 

console.log(error.response) 로 받으면 된다

 

 

출처 : https://github.com/axios/axios/issues/960

'frontend' 카테고리의 다른 글

[Vue] bootstrap-vue dropdown select event  (0) 2019.05.08

+ Recent posts