手机浏览器拍照

react项目可用react-html5-camera-photo这个三方组件库实现项目内拍照 不用唤起摄像机

1.引入

import Camera from 'react-html5-camera-photo';
import 'react-html5-camera-photo/build/css/index.css';

2.使用

    { this.onTakePhoto(dataUri); } }
        />

3.相关api可以在这个地址中搜到

文档地址https://github.com/seanyangsg/react-html5-camera-photo

你可能感兴趣的:(reactjs)