提问人:Ben 提问时间:11/14/2023 最后编辑:Ben 更新时间:11/14/2023 访问量:17
获取一个空的 Vcard 二维码和 qrcode gem
Get an empty Vcard Qrcode wit qrcode gem
问:
我正在使用 rqrcode gem 并想获取 vcard 数据。
生成 png,但没有任何数据
def qrcode
qrcode_data = %{BEGIN:VCARD
VERSION:4.0
N:#{@participant.nom};#{@participant.prenom}
ORG:#{@participant.entreprise}
EMAIL:#{@participant.email}
TEL;type=PREF:#{@participant.tel}
END:VCARD}
qrcode = RQRCode::QRCode.new(qrcode_data)
png = qrcode.as_png(size: 200)
respond_to do |format|
format.png { send_data(png, type: 'image/png', disposition: 'inline') }
end
end
答: 暂无答案
评论