Main Page

Category카테고리 :

NoticeBorad게시판 / linux리눅스 / php / nodejs /website웹사이트

/ ReactNative / Kotlin / Swift / Cubase / QT / ServerApps

react-native-freelifemakers-ui

  • [Swift]Active,inActive button[MacOS]

    ⭐️ ReactExample6 – server + swift 👉🏻 이전에 포스트한 React 부분의 Active,inActiove버튼을 Swift앱으로 구현한 내용입니다.This is the implementation of the Active, inActive buttons from the React section I posted previously into a Swift app. 👉🏻 서버 부분의 코드는 Vite+React의 Express서버 부분과 같습니다.The code for the server part is the same as the Express server part…


  • [Vite+React]axios,cors-GET,POST,PATCH,PUT(MacOS)

    👉🏻 GET,POST,PATCH,PUT을 axios모듈을 사용하여 구현한 코드입니다.This is the code that implements GET, POST, PATCH, and PUT using the axios module. 👉🏻 프로젝트 생성과 모듈 설치는 이전 포스트를 참조하세요Please refer to the previous post for project creation and module installation. 👉🏻 브라우저에서 차단되는 오류를 방지하지 위해서 cors모듈도 설치합니다.Also install the cors module to avoid browser blocking…


  • [Vite+React]GET,POST,PATCH,PUT(MacOS)

    👉🏻 아래는 Express서버에서 GET,POST,PATCH,PUT에 대한 설명입니다.Below is an explanation of GET, POST, PATCH, and PUT on the Express server. 메서드/Method 용도/Use 특징/Characteristic GET 조회/Check 리소스 가져오기주소창에 데이터를 보냄– /users/1?name=kim POST 생성/Creation 새 리소스 추가데이터를 바디에 숨겨서 보냄– { “name”: “John”, “age”: 30 } PATCH 부분수정/Partial modification 일부 속성만 변경데이터를 바디에 숨겨서 보냄 PUT 전체수정/Edit all…