在我的代码中,有两个Textinput,无论我写什么,然后按TouchableOpacity,它都会生成QRCode,现在当我长时间按QRCode时,它正在请求画廊许可,但是之后没有保存或下载,严重的是需要帮助,请。这是git链接,我已上传完整代码“ https://github.com/abhigyan9301/QRCode”
// routes.js
const express = require('express');
const router = express.Router();
const axios = require('axios')
// my backend is connected to another api in this project
router.get('/', (req,res) => {
axios.get('https://jsonplaceholder.typicode.com/users/1').then(data => res.json(data.data))
})
谢谢..