Google sheet Apps script Webapp | Tạo QR Code động – Tự động load mã QR mới khi nội dung mã hóa đổi
Giaoan.link chia sẻ đến các bạn một project về “Google sheet Apps script Webapp | Tạo QR Code động – Tự động load mã QR mới khi nội dung mã hóa đổi“. Với project này bạn dễ dàng thay đổi nội dung của mã QR code đặt trên website hay blog của bạn. QR code là dạng mã sinh ra động, chứ không phải là một hình ảnh mà mình upload chèn vào website. Bên dưới là link video hướng dẫn minh họa và code apps script để bạn thực hiện.
Bạn tìm kiếm thêm nhiều project google sheet, apps script tại đây.
Project ngẫu nhiên:
- HTML WEBAPP CSS -Mô phỏng hệ mặt trời -Trái đất -Mặt trăng đơn giản trên nền vũ trụ đen sao lấp lánh
- Google sheet Webapp Script | Tìm kiếm, lọc và In chi tiết thông tin sản phẩm của mã Khách hàng
- Google sheet Apps script | Data Entry Popup From – Thêm mới – Chỉnh sửa – Xóa
- Google sheet Webapp Script | Quản lý đặt xe cho chuyến đi – Tài xế cập nhật hoàn thành thông tin
- Apps script Webapp | Lấy giá trị Input hiển thị lên – Web Get value input field display on web
- Google sheet Apps script | Todo List and Send mail – Tạo danh sách nhắc việc và gửi mail
- Web App Script | Bộ Icon CSS Rất dễ lập trình cho giao diện webapp
- Google sheet Webapp | Project Quản lý khách hàng – Cập nhật tiến độ sửa chữa
- Google sheet Apps script Webapp | Login form OTP xác minh qua email, Chuyển link cho từng User
- Web App Script CSS JS | Tạo hiệu ứng Click button Nổ tung các mảnh giấy và chuyển link
Mã Apps script trang “Code.gs”
function doGet() {
return HtmlService.createHtmlOutputFromFile('Index');
}
function getQRCodes() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Sheet1'); // Thay 'Sheet1' bằng tên sheet của bạn
var data = sheet.getRange("A1").getValues(); // Lấy dữ liệu từ cột A
var qrCodes = data.map(function(row) {
var url = "https://api.qrserver.com/v1/create-qr-code/?size=300x300&data=" + data;
return url;
});
return qrCodes;
}
Mã apps script trang “Index.html”
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<style>
.container{
width: 500px;
text-align: center;
padding: 5px;
margin-left: auto;
margin-right: auto;
border: 1px solid blue;
border-radius: 10px;
}
.title{
background-color: yellow;
font-size: 1.5em;
font-weight: bold;
padding: 20px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="title">QR CODE TỰ ĐỘNG CẬP NHẬT</div>
<div class="box-qr" id="qrCodes"></div>
</div>
<script>
function displayQRCodes(qrCodes) {
var container = document.getElementById('qrCodes');
qrCodes.forEach(function(url) {
var img = document.createElement('img');
img.src = url;
container.appendChild(img);
});
}
google.script.run.withSuccessHandler(displayQRCodes).getQRCodes();
</script>
</body>
</html>