如何使用JavaScript存储网页/网页中的数据?

时间:2019-03-13 05:44:35

标签: javascript json angular

我想使用JavaScript以JSON格式在本地存储此页面Tableau Public Gallery feed。我一直在寻找脚本和代码片段,但是由于每次运行代码都会遇到相同的错误,因此找不到任何有用的信息。

Access to XMLHttpRequest at 'https://public.tableau.com/en-us/s/gallery/feed' from origin 'http://localhost:4200' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

下面是我当前正在使用的代码。

  $.ajax({

     url:"https://public.tableau.com/en-us/s/gallery/feed",
     method: 'GET',
     dataType:'JSON',
     headers: {
         'Access-Control-Allow-Origin': '*'
     },
     success: function(response) {
         console.log(response);
     }
});

我也尝试使用POSTMAN。它还给出了无法得到任何响应的错误。是出于Tableau网站的限制,还是我做错了事。

PS:我试图在Angular 7项目中实现这一点。

0 个答案:

没有答案