在我的代码正常工作前几天
"onclick='google.script.run.processForm(this.parentNode)"
但突然它停止工作而没有任何代码更改。
我的代码:
.html 文件:-
<form id='addnewForm' action='myurl' method="post">
<input name='name' type="text" >
<input name='age' type='text'>
<input type='submit' value="submit" name="submit" onclick='google.script.run.processForm(this.parentNode)' >
</form>
code.js 文件:
function processForm(value) {
var name= value.name;
var age= value.age;
Logger.log('name is: ' + name);
Logger.log('age is:' + age);
}
在 processForm 函数给出输出之前,但现在它既没有给出任何输出,也没有给出它的调用。