TWIL 2020-12 (1)

jh22j9·2021년 4월 17일
0

1. module.exports


// api.js
module.exports.findByOrderID = function (params) {
  ...
  return this.findByElements(payload);
};

module.exports.findByElements = function (params, callback) {
  ...
};

export 해서 사용하던 findByElements 함수를 조회 레퍼런스 문서 별로(findByOrderID, findByTaskID...) 모듈화 하여 사용하기로 했다. 그 중에 하나인 findByTaskID 함수를 다른 컴포넌트에서 import하여 호출했는데 Uncaught ReferenceError: findByElements is not defined 에러가 발생한다.

// api.js
module.exports.findByOrderID = function (params) {
  ...
  return findByElements(payload);
};

const findByElements = function (params, callback) {
  ...
};

이렇게 하면 작동하지만 findByElements를 import하는 다른 컴포넌트에서 사용할 수 없게 된다.

module.exports = {
  findByOrderID,
  findByTaskID,
  ...
};

하단에서 외부에서 사용할 함수를 한 번에 export하면 된다.

2. Expected an object to be thrown.eslintno-throw-literal


throw "Array type for params is not supported";
// Expected an object to be thrown.eslintno-throw-literal
throw new Error("Array type for params is not supported");

🔗 https://eslint.org/docs/2.0.0/rules/no-throw-literal

0개의 댓글

관련 채용 정보