我正在尝试创建一个我想要在Excel工作表中更新的应用程序。我遇到https://github.com/dwyl/html-form-send-email-via-google-script-without-server,显然没有使用角度。用
替换ajax调用onsubmitForm() {
let headers = new Headers();
headers.append('Access-Control-Allow-Origin','*');
let options = new RequestOptions({ headers: headers });
let body = {
name:"lala",
message:"ssss",
email:"a@k.com",
color:"red"
}
return this.http.put('https://script.google.com/macros/s/AKfycbxJKxvzl8Go5ZihUc95su-HFvFeoTtnMyA3qq5YiBxcDYalDdOb/exec', body).toPromise(); }
我收到错误"对预检请求的响应没有通过访问控制检查:否' Access-Control-Allow-Origin' &#34 ;. 有办法解决吗? 或者可能是使用角度2向Excel工作表添加数据的另一种方法?