我正在尝试使用iron-ajax进行get呼叫,如下所示:
<iron-ajax
id="getLogsAjax"
url="http://localhost:51806/{{logPath}}"
method="get"
handle-as="text"
last-response="{{logResponse}}">
</iron-ajax>
但是出现以下错误: 所请求的资源上没有“ Access-Control-Allow-Origin”标头。因此,不允许访问来源“ http://localhost:8081”
我看到此问题已在an older version of Polymer上解决,但是那里使用的 byutv-jsonp 库现在已过时。知道如何使用Polymer 3.0解决此问题吗?