Ajax Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource

前端 未结 11 1511
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-02 16:55

I\'m writing a simple site that takes as input an idiom, and return its meaning(s) and example(s) from Oxford Dictionary. Here\'s my idea:

I send a request to the fol

11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 17:37

    Place below line at the top of the file which you are calling through AJAX.

    header("Access-Control-Allow-Origin: *");
    

提交回复
热议问题