iT邦幫忙

0

如何在google app script 的網頁應用程式中呼叫gs函式並且取得回傳值

  • 分享至 

  • xImage

我想要在網頁應用程式中使用在gs設定好的函式
正常來說 沒有設定return的都可以正常執行
但我只要設定return並且在網頁應用程式呼叫 就會報錯
以下是我的html代碼

<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
  </head>
  <body>
    <input type="button" id="fuc" value="click" onclick="fuc(this)">
    <script>
      function fuc(){
        x = google.script.run.test();
        console.log(x)
      }
    </script>
  </body>
</html>

gs代碼

function test (){
  return 10
}

報錯訊息(console)

Net state changed from IDLE to BUSY
Net state changed from BUSY to IDLE
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友回答

立即登入回答