我有一个google docs模板文档,我将所有模板占位符替换为文本或图像。它适用于文本,但适用于图像,我无法使其正常工作。
以下是应用程序脚本代码:
Invalid image data. (line 17, file "Code", project "Create PDF")
我遇到以下错误:
body.replaceText('<' + x + '>', body.appendImage(resp.getBlob()));
这是第17行:
use mongo;
db.getCollection("Students").find(
{
"Name" : {
"$exists" : true
},
"Last_Name" : {
"$exists" : true
},
"Studies" : "Computer Technologies"
},
{
"Name" : 1.0,
"Surname" : 1.0,
"Studies" : 1.0,
"Semester" : 1.0
}
);
我什至尝试了这个: Add images to Google Document via Google Apps Script
,并且正在执行以下操作: https://developers.google.com/apps-script/reference/document/body#appendImage(BlobSource)
我应该怎么做才能使其正常工作?