일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- fcm 푸시
- 리액트
- 알고리즘
- fcm push
- 뒤로가기구현
- 페이지리렌더링
- C++98에러
- 리액트네이티브
- React
- touchableopacity
- 자동로그인
- react-native
- 재귀함수
- makePermutation
- 모달에서뒤로가기
- 순열
- TextInput
- modal
- 모달
- Flatlist
- Icon
- asyncstorage
- ReactNative
- 2023년 정처기 필기
- 리액트 네이티브
- algorithm
- vision-camera
- 가격자릿수
- API
- JSON
- Today
- Total
목록API (2)
생각은 길게 코딩은 짧게

API를 사용하여 사업자 등록증과 명함 사진을 서버에서 들고와보았습니다. ✅ 로그인 되어있는 사용자의 아이디와 패스워드를 서버로 보내 사진을 가져오는 API //사업자등록증 사진을 가져오는 API async callGetCompanyImage(loginInfo) { let manager = new WebServiceManager(Constant.serviceURL + "/GetCompanyImage", "post"); manager.addFormData("data", { userID: loginInfo.userID, passwd: loginInfo.passwd, id: 2 }); let response = await manager.start(); if (response.ok) { return respon..

import React, { Component } from 'react'; import { View, Text, TextInput, TouchableOpacity, FlatList, ScrollView } from 'react-native'; import { styles } from "../../styles/address_search"; import Icon from 'react-native-vector-icons/MaterialIcons'; import PageIcon from 'react-native-vector-icons/AntDesign' import WebServiceManager from '../../util/webservice_manager'; class SearchAddress extend..