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:
- 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
- Googlesheet Apps script Webapp | Tạo trang trắc nghiệm online như Quiz
- Google sheet Apps script | Trang trắc nghiệm Quiz – Cập nhật câu hỏi, trả lời, thời gian đếm ngược
- Google sheets | Number to text, Hàm đọc số thành chữ Ứng dụng taoh hóa đơn, phiếu chi.
- Googlesheet Apps script Webapp | Tạo mã QR Code từ nội dung nhập vào – QR Code Generator
- Google sheet apps script | Dropdown đơn giản lấy dữ liệu từ google sheet – Simple dropdown
- Apps script Webapp CSS – HTML – JS | Tạo ứng dụng Ghi chú trên nền tảng webapp – website
- Google sheet Apps script | Hàm setTimeout định thời gian xóa các trường Input khi click Button
- Apps script Webapp | Sử dụng CSS tạo hiệu ứng sóng nước – Trang trí đẹp mắt cho web và blog.
- Google sheet Apps script Tiện ích tạo mã vạch (barcode) trên webapp
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>