Javaスクリプトの結果がHTMLに表示されない
Nov 30 2020
私は従業員がいるかどうかを確認するためにガスコードを書いてかない(Googleのシートからデータを抽出する)で。コンソールログから正しい答えが得られますが、ボタンをクリックしてもフロントエンドに答えが表示されません。どこが間違っていたかのトラブルシューティングを手伝ってもらえますか?
<div>
<script>
function onStatus(notify) {
var employee = "John Peter";
var ss = SpreadsheetApp.getActiveSpreadsheet();
var mainSheet = ss.getSheetByName("MAIN");
var data = mainSheet.getDataRange().getValues();
for (var j = 0; j < data.length; j++){
var row = data[j];
var mainSheet2 = row[4];
var mainSheet3 = row[0];
var status = (mainSheet2 =="IN" && mainSheet3 == employee) ;
if (status == true){
var notify = employee +" You Are In"
return notify;
}
}
document.getElementById('status').innerHTML= notify;
}
</script>
<button onclick="onStatus()">Check Status</button>
<font color='Green' id="status" ></font>
</div>
回答
4 Diego Nov 30 2020 at 10:49
Googleは、これがどのように機能するかをよりよく理解するために読むことを強くお勧めする、非常に優れたクライアント/サーバー通信ガイドを提供しています。
SpreadsheetApp.getActiveSpreadsheet()
フロントエンドスクリプトにappsスクリプトコード(例)を入れることはできません。そのコードは、バックエンドのappsスクリプトサーバーで実行する必要があります。その後、呼び出しを使用してコードをgoogle.script.run呼び出します。
Code.gs
function doGet(e) {
return HtmlService.createHtmlOutputFromFile('Index');
}
function checkStatus() {
var employee = "John Peter";
var ss = SpreadsheetApp.getActiveSpreadsheet();
var mainSheet = ss.getSheetByName("MAIN");
var data = mainSheet.getDataRange().getValues();
for (var j = 0; j < data.length; j++){
var row = data[j];
var mainSheet2 = row[4];
var mainSheet3 = row[0];
var status = (mainSheet2 =="IN" && mainSheet3 == employee) ;
if (status == true){
return employee + " You Are In";
}
}
}
Index.html
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<div>
<button onclick="onStatus()">Check Status</button>
<font color='Green' id="status" ></font>
</div>
<script>
function onStatus() {
google.script.run
.withSuccessHandler(updateStatus) // Send the backend result to updateStatus()
.checkStatus(); // Call the backend function
}
function updateStatus(notify) {
document.getElementById('status').innerHTML= notify;
}
</script>
</body>
</html>