angular 11 this.httpClient.get( cross origin problem resolved ( webapi side add some code)


 
**webapi tarafında;

 public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            //TODO: aşağıdaki satır loacalhost tan diğer bir programdam bu servisin çağrılmasını sağlıyor. yoksa client tarafı *cors* hatası veriyor.
            app.UseCors(builder => builder.AllowAnyOrigin());




Yorumlar