JQuery 이벤트를 통해 Vuejs 구성 요소를 조작하는 데이터 대상
674 단어 vuehtmljavascriptjquery
다음은 코드입니다.
바인딩 이벤트의 루트 Vue 구성 요소에서 다음을 수행합니다.
mounted() {
$("body").on("custom-event", this.methodForSettingDataObject);
},
beforeDestroy() {
$("body").off("custom-event", this.methodForSettingDataObject);
}
이벤트 트리거var event = jQuery.Event("custom-event");
event.foo = fooArray;
event.bar = barArray;
$('body').trigger(event);
결론:Vuejs에서 jQuery를 사용하는 것은 좋지 않은 방법으로 여겨지지만, 그것이 문제를 해결하기만 하면 틀림없다.
Reference
이 문제에 관하여(JQuery 이벤트를 통해 Vuejs 구성 요소를 조작하는 데이터 대상), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/faisalshaikh8433/manipulating-data-object-of-the-vuejs-component-through-jquery-events-20ih텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)