使用reactjs的电子邮件QR码生成器

hgqdbh6s  于 2023-03-08  发布在  React
关注(0)|答案(1)|浏览(113)

因此,我尝试使用react-qr-code模块在值字段中生成QR码,我给出了mailto:${email}?subject=${subject}&body=${body},但当我使用谷歌透镜扫描时,它被转换为https://mailto:????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

14ifxucb

14ifxucb1#

mailto:${encodeURIComponent(email)}?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}
会起作用

相关问题