Activities of "liangshiwei"

This is a CORS problem, maybe you didn't configure it correctly.

builder.Services.AddCors(options =>
{
    options.AddPolicy(name: "MyPolicy",
        policy =>
        {
            policy.WithOrigins("http://example.com",
                                "http://www.contoso.com")
                            .AllowAnyHeader()
                            .AllowAnyMethod()
                            .AllowCredentials();
        });
});
app.UseRouting();

app.UseCors("MyPolicy");

You just need to send HTTP requests to the server from angular.

there is no errors just error console

is there any logs about this request? if not, i guess this request is not actually sent

i don't think so, abp use the standard database library.

btw, if you share a minimum reproducible project with me. i will check it.

See https://www.connectionstrings.com/

Hi,

we have a video ABP Community Talks 2022.1 — Microservice Development: https://www.youtube.com/watch?v=TpyROlTBc50

Hi,

you need to add module dependency

[DependsOn(typeof(AbpBlobStoringModule),)]
public class YourApplicationModule : AbpModule

Hi,

could you share the server full error logs?

you can remove MultipleActiveResultSets

Answer

Similar issues https://github.com/abpframework/abp/issues/19632#issuecomment-2311275722

Showing 231 to 240 of 5643 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30