일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- react-sortable-hoc
- window.postMessage
- react-admin
- signIn
- gitignore
- node
- readableStream
- JavaScript
- yml
- 가상 DOM
- 프로그래머스
- electron
- TypeScript
- zerocho
- react
- AWS
- timeinput
- react-xml-parser
- dynamodb
- react DOM
- xlsx
- jimp
- react-hook-form
- axios
- electron-builder
- Route53
- domtoimage
- icrawler
- cognito
- API Gateway
- Today
- Total
목록react (3)
꾸준히 공부하는 개발자
이미지를 axios로 blob 데이터로 받아와 dom에 직접 image를 생성 후 그 dom을 클릭하여 a tag의 href를 클릭한 효과를 만들어 다운 받는다. axios({ url: decodeURIComponent(url), method: 'GET', responseType: 'blob' }).then((response) => { const url = window.URL.createObjectURL(new Blob([response.data])) const link = document.createElement('a') link.href = url link.setAttribute('download', `${item.id}.jpg`) document.body.appendChild(link) link.c..
SignUp.js import React, {useState} from 'react' import {useDispatch} from "react-redux" import {useForm} from "react-hook-form" import {signUp} from "../../actions/users" const SignUp = () => { const {register, handleSubmit, errors} = useForm() const handleLogin = async values => { console.log(values) try{ await dispatch(signUp(values)) alert('회원가입이 완료되었습니다..') history.push('/') }catch(err){ ale..
react-admin 에는 string 을 배열로 나열하게 만드는 field가 만들어져있지 않다. 이러한 기능을 왜 안 만들었는지 의문이지만, 다음에 사용하기위해 내가 직접 만들어 보았다. TextArrayField.js import React from "react" export const TextArrayField = ({data}) => { const arrayValues = Object.values(data) return ( {arrayValues.map((value, index) => {value})} ) } Show.js