postDataToSheet(data:any)
{
alert("in sheet");
return this.http.post('https://script.google.com/macros/s/AKfycbxD-6omsA58lyOvJ9dkUyCEQNnAbKJanH_Ddz9xJO5rVuNyYKZv/exec',
data,{headers : new Headers({'Content-Type':'application/jsonp','Access-Control-Allow-Origin':'*','crossDomain':true})}
).subscribe(data=>alert("Successfully Saved"));
我无法保存数据,因为我的电子表格请求因跨域政策而被拒绝。
还有其他方法来解决问题????