Activities of "liangshiwei"

Hi,

As I see, you are using Hangire background worker integration, not Hangfire background job integration. they are different.

if you want to use Hangfire background job integration too , please check this document: https://abp.io/docs/latest/framework/infrastructure/background-jobs/hangfire

PS, don't forget to remove Volo.Abp.BackgroundJobs package and remove BackgroundJobWorker from the Hangfire dashboard

Hi,

Sorry, but I need to know the specific steps to reproduce the problem.

I tried your steps but I can't reproduce the problem.

  • abp new Testapp
  • Clone ABP repo
  • Change branch to rel-8.3
  • run abp switch-to-local --paths "....ABP repo path"
  • Build solution

Hi,

Could you please share a test project with me? i will check it , thanks.

shiwei.liang@volosoft.com

Yes, you can open abp studio and click File -> Initialize Existing Solution

Hi,

if If the current request is to logout, then do not redirect

Hi,

Yes, old and new CLI use different template sources.

I can't reproduce the problem

Hi,

Could you please share your code to reproduce it

Thanks it works but after redirect if user tries to logout gets errors on page if it is not redirected everything works fine.

It looks like it has nothing to do with this. could you try to test it without this change?

Please also tell how to get public website url from appsetting inside this code block?

You can configure it in the appsettings.json and read it.

Hi,

because the HTTP Request is async. you can try this

//<suite-custom-code-block-1>

var _authors;
window.acme.bookStore.books.books.getAuthorLookup()
.then(function(authors){
    _authors = authors;
});

//</suite-custom-code-block-1>
    
.........

{ data: "authorName",
    render: function(authorID)
    {
        return _authors.items.find(type => type.id === authorID).firstname;
       
    }
 }         
Showing 901 to 910 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 16, 2025, 10:35