TIL [05/12]

Holyday33·2022년 5월 13일
0
post-custom-banner

할 일


  • RN강의 알림까지
    • node.js과 클라이언트(RN)에서 알림을 어떻게 넣는지 알기 위함
  • 파이썬 멀티미디어처리 GUI 만들기 과제
  • 블록체인 제출

배운 것


  • module.exports와 exports의 차이

    exports와 module.exports는 동일한 객체를 바라보고 있지만, exports는 module.exports를 참조(call by reference)하는 형태이다. 따라서 exports = a의 형태로 코드를 작성하게 된다면 module.exports에 대한 참조가 끊어지고 변수 a의 값을 가진다.
    출처: https://cotak.tistory.com/103 [TaxFree]

  1. 안드로이드 에뮬레이터 문제

    requiring unknown module "3"
  2. extInput 컴포넌트 문제

    Property 'ref' does not exist on type 'TextInputProps | Readonly<TextInputProps>'.
  • 제로초의 강의는 ref를 썼지만 vscode에서는 오류라고 뜬다.
  • 위의 두 문제는 껐다 키니 작동되었다.
  1. Error: While trying to resolve module immer from file
    • 해결 링크
    • immer의 버전에 문제가 있었다. 9.0.13으로는 안되고 9.0.12로 된다.
  1. RN/안드로이드에서 axios가 작동이 안된다.
  {"DONE": 4, "HEADERS_RECEIVED": 2, "LOADING": 3, "OPENED": 1, "UNSENT": 0, "_aborted": false, "_cachedResponse": undefined, "_hasError": true, "_headers": {"accept": "application/json, text/plain, */*", "content-type": "application/json"}, "_incrementalEvents": false, "_lowerCaseResponseHeaders": {}, "_method": "POST", "_perfKey": "network_XMLHttpRequest_undefined/login", "_performanceLogger": {"_closed": false, "_extras": {}, "_pointExtras": {}, "_points": {"initializeCore_end": 1652355733918, "initializeCore_start": 1652355733888}, "_timespans": {"network_XMLHttpRequest_undefined/login": [Object]}}, "_requestId": null, "_response": "Expected URL scheme 'http' or 'https' but no colon was found", "_responseType": "", "_sent": true, "_subscriptions": [], "_timedOut": false, "_trackingName": "unknown", "_url": "undefined/login", "data": undefined, "readyState": 4, "responseHeaders": undefined, "status": 0, "timeout": 0, "upload": {}, "withCredentials": true}
  • 단순히 url값이 잘못된 것이다.
profile
Why so serious?
post-custom-banner

0개의 댓글