반응형

programing 1646

Vuetify로 이미 페이지 처리된 데이터 처리

Vuetify로 이미 페이지 처리된 데이터 처리 백엔드/서버에 이미 데이터 페이지를 작성했습니다.의 문서를 검토했습니다.하지만 그곳에 있는 것들을 파악할 수 없었다.사용하고 있기 때문에vuex그리고 내 데이터가 저장될 것이다.state이제 어떻게 조합하면 좋을지. resident.js: export default { state : { residents: [], }, mutations: { set_residents (state, residents) { state.residents = residents }, }, getters: { allResidents (state) { return state.residents }, }, actions: { get_resident_list (context, page) { ..

programing 2022.08.16

유형 스크립트가 있는 vuejs에서 여러 구성 요소를 가져올 수 없음

유형 스크립트가 있는 vuejs에서 여러 구성 요소를 가져올 수 없음 다음과 같이 다른 컴포넌트에 모두 사용하고 싶은 컴포넌트가 2개 있습니다. import { Component, Vue } from 'vue-property-decorator' import DDGDriver from '@/components/ddg-driver.vue' import OverLay from '@/components/overlay.vue' @Component({ components: { 'over-Lay':OverLay, 'DDGDriver':DDGDriver } }) export default class DDGPage extends Vue { showModal = true; onModalClose(){ this.showMo..

programing 2022.08.15

Vuex는 많은 테이블을 로드하고 많은 대기 디스패치 페치를 연결합니까?

Vuex는 많은 테이블을 로드하고 많은 대기 디스패치 페치를 연결합니까? 저는 Vue에 익숙하지 않아서 많은 테이블을 비동기식으로 로드하는 방법을 해킹합니다. 좀 더 간결하고 효율적인 작곡 방법이 있을까요? initializeApp({ state, commit, dispatch }) { commit("initializeStore"); // sets userData from localStorage || "" if (state.userData.token) { dispatch("getTables"); } }, async getTables({ dispatch, commit }) { await dispatch("getCollections"); const payload = await airtableQuery.get..

programing 2022.08.15

getter 및 setter와 함께 localcomputed 함수의 Vuex 구문 오류

getter 및 setter와 함께 localcomputed 함수의 Vuex 구문 오류 Vuex localcomputed 객체를 get/set과 스토어 매핑을 조합하면 구문 오류가 발생합니다. Vuex 문서에서 볼 수 있듯이 다음과 같이 객체 확산 오퍼레이터를 사용하여 스토어 메서드를 매핑할 수 있습니다. computed: { localComputed () { /* ... */ }, // mix this into the outer object with the object spread operator ...mapState({ // ... }) } https://vuex.vuejs.org/en/state.html # # 객체 확산 기능 또한 다음과 같은 계산 세터를 작성할 수 있습니다. computed: {..

programing 2022.08.15

Java의 네이티브 키워드는 무엇입니까?

Java의 네이티브 키워드는 무엇입니까? 이 퍼즐(Java 키워드 trivia 게임)을 하다가 우연히 알게 되었습니다.native키워드를 지정합니다. Java의 native 키워드는 무엇에 사용됩니까?최소 실행 가능 예시 Main.java public class Main { public native int square(int i); public static void main(String[] args) { System.loadLibrary("Main"); System.out.println(new Main().square(2)); } } 메인.c #include #include "Main.h" JNIEXPORT jint JNICALL Java_Main_square( JNIEnv *env, jobject ob..

programing 2022.08.15

Vuex에서의 디바운스 사용방법

Vuex에서의 디바운스 사용방법 하려고 합니다.debounce외부 API가 필요한 Vuex 작업 내의 메서드. // Vuex action: async load ({ state, commit, dispatch }) { const params = { period: state.option.period, from: state.option.from, to: state.option.to } commit('SET_EVENTS_LOADING', true) const res = loadDebounced.bind(this) const data = await res(params) console.log(data) commit('SET_EVENTS', data.collection) commit('SET_PAGINATION', ..

programing 2022.08.15

Vuex: 복잡한 객체 및 상태 변경 기능 사용

Vuex: 복잡한 객체 및 상태 변경 기능 사용 외부 API를 사용하고 있다고 가정합니다.Machine물건들.작성할 수 있습니다.Machine와 함께createMachine여러 중첩된 속성을 가진 복잡한 개체와 해당 개체의 상태를 변경하기 위한 함수 집합을 제공합니다.API는 예를 들어 다음과 같습니다.loadMemory,sleep,connectDevice(유사한 것을 상상해 보십시오.이것은 예에 지나지 않습니다). 글로벌 Vuex를 사용하고 싶다Machineobject를 사용하여 다음과 같이 초기 생성을 디스패치하고 반환된 객체를 저장합니다. actions: { createChannel({ commit, state }, params) { m.createMachine(params).then( functi..

programing 2022.08.15

C 구조 상속 포인터 정렬

C 구조 상속 포인터 정렬 배경 저는 주로 학습 목적으로 기본 링크 리스트 데이터 구조를 만들었습니다.이 목록의 한 가지 목표는 다양한 데이터 구조를 처리할 수 있다는 것이었습니다.그래서 C로 상속을 시뮬레이트하기 위해 구조구성을 시도했습니다.링크 리스트의 기반이 되는 구조는 다음과 같습니다. typedef struct Link { struct Link* next; struct Link* prev; } Link; typedef Link List; 구현에서는 목록의 선두와 꼬리 역할을 하는 감시 노드를 선택했습니다(이것이 Link == List의 이유입니다). 리스트가 실제로 데이터를 처리하도록 하기 위해 구조체는 링크 구조를 첫 번째 멤버로 포함합니다. typedef struct { Link link; ..

programing 2022.08.15

Vuex getter에서 rootState에 액세스하는 중

Vuex getter에서 rootState에 액세스하는 중 접속 방법rootState게터 차림으로요? const getters = { getParams: rootState => { return rootState.route.params }, } 위의 것은 동작하지 않습니다.이거 어떻게 하는 거야?이 게터가 모듈에 있는 경우rootState세 번째 인수입니다. const getters = { getParams: (state, getters, rootState) => { return rootState.route.params } } 언급URL : https://stackoverflow.com/questions/42171276/accessing-rootstate-in-vuex-getter

programing 2022.08.15
반응형