我通过javascript Node WP API(调用wp.posts().after()
)向网站提出以下请求,并获得了帖子列表
https://site/wp-json/wp/v2/posts?after=2018-07-31T16%3A56%3A29.225Z&page=1
此请求的回复标头包含access-control-allow-origin: http://localhost:8080
在该请求之后,我发送了另一个请求,以对此帖子发表评论
https://site/wp-json/wp/v2/comments?page=1&per_page=99&post=8163
浏览器告诉我:
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access.
实际上,服务器答复中这次没有access-control-allow-origin头。
服务器如何接受第一个请求而不接受第二个请求?这是否意味着服务器正在阻止对第二个资源的请求?我可以做些访问吗? (我不是服务器的所有者)
几天前,我能够成功执行两个请求。