Activities of "liangshiwei"

Hi,

Whether it is 8.2.1 or 8.2.2, the way to write code is the same

And we also provide an example: eShopOnAbp https://github.com/abpframework/eShopOnAbp

Here are many business services you can refer to how to create business logic

can you share the HTTP Request/Response body

okay

Hi,

you may need to clear the Redis cache.

okay

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/

Showing 551 to 560 of 5968 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11