我想要在網頁應用程式中使用在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