프로그래밍

[넥사크로] ReferenceError: Invalid left-hand side in assignment 오류 해결 방법

타 개발자가 만든 넥사크로 스크립트를 확인하던 중 넥사크로 개발툴 하단 Output영역에 ReferenceError: Invalid left-hand side in assignment 로그가 찍혔다.

오류가 발생한 스크립트

this.div_info.ds_userInfo.getColumn(0, “userId”) = this.userIdentify;

오류 해결하기

this.div_info.ds_userInfo.setColumn(0, “userId”, this.userIdentify):

데이터셋에 데이터를 변경할 때는 getColumn()함수가 아닌 setColumn()함수를 사용해야한다.

error: Content is protected !!