使用快递和胡须为库存系统建立模板。编辑产品页面上的按钮将打开另一个胡子模板,该模板将生成该产品的QR码,该QR码将链接到上一页。因此,该链接包含一个可变的产品ID,这就是为什么它需要像常规href一样读取当前URL。
“编辑产品”页面显示为“ localhost:PORT / product_edit / ID”,显示时可能类似于“ localhost:PORT / product_edit / 42”
我需要在一个单独的窗口中生成QR码,因为它需要放置在PDF内。
QRCode.js的命令当前标记为:
<script>
let qrcode = new QRCode("output", {
text: window.location.href,
width: 256,
height: 256,
colorDark : "#04243c",
colorLight : "#FFFFFF",
correctLevel : QRCode.CorrectLevel.H
});
</script>
但是现在,新链接将看起来像“ localhost:PORT / product_edit / 42 / qrcode”,并且当然42是可变的。因此,window.location.href将选择/ qrcode页面,我需要将其删除。因此,基本上,如何获取window.location.href减号/ qrcode? p>
我们将不胜感激。