我想以角度2将表单数据保存到Google电子表格。我该怎么办?

时间:2016-07-27 05:33:23

标签: angular

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"));

我无法保存数据,因为我的电子表格请求因跨域政策而被拒绝。

还有其他方法来解决问题????

0 个答案:

没有答案