我正在使用SimpleSoftwareIO/simple-qrcode来生成QRCode并将其存储。
var TestInput = /** @class */ (function () {
function TestInput() {
}
return TestInput;
}());
哪个返回以下错误,
\QrCode::generate($reservation_id, '/assets/uploads/'.$reservation_id.'.svg');
答案 0 :(得分:1)
有效,
\QrCode::generate($reservation_id, base_path().$reservation_id.'.svg');