我在AppMaker页面上有一个按钮,该按钮可以在客户端执行功能
function showall(){
app.pages.ProjectComposant.children.Html1.html = google.script.run.showhtml();
}
服务器端的功能是
function showhtml(){
return "<p>test</p>";
}
,但服务器未返回字符串。我尝试使用withSuccessHandler()
,但客户端脚本上没有onSucess处理程序
还有另一种从服务器获取返回值的方法吗? 坦克
答案 0 :(得分:0)
在服务器端
function showhtml(){
return JSON.Stringify("<p>test</p>");
}
在客户端
function showall(){
google.script.run.withSuccessHandler(
function(returned_result){
app.pages.ProjectComposant.children.Html1.html = JSON.Parse(returned_result);
})
.showhtml();
}