Access to Image from origin 'null' has been blocked by CORS policy

前端 未结 8 1672
野的像风
野的像风 2020-12-01 04:09

I have JavaScript application in OpenLayers 3, and my base layer is created from local tiles. I work only in my computer so I do not know why I have CORS error.



        
8条回答
  •  清歌不尽
    2020-12-01 04:39

    I was having the exact same problem. In my case none of the above solutions worked, what did it for me was to add the following:

    app.UseCors(builder => builder
    .AllowAnyOrigin()
    .AllowAnyMethod()
    .AllowAnyHeader()
    

    So basically, allow everything.

    Bear in mind that this is safe only if running locally.

提交回复
热议问题