Hello, as far as I have understood you will need to use ActionResult in the controller in some way.
To resolve this problem, you can consider using a structured base class like ActionResultBase. This ensures a consistent response format while maintaining compatibility with ABP’s proxy generation. Here’s an example implementation:
using Ticket8857.Controllers;
using System.Threading.Tasks;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.Application.Dtos;
public class ActionResultBase
{
public bool Success { get; set; }
public string ErrorMessage { get; set; }
public List<string> ValidationErrors { get; set; }
public ActionResultBase()
{
ValidationErrors = new List<string>();
}
}
public class ActionResult<TValue> : ActionResultBase
{
public ActionResultBase Result { get; set; }
public TValue Value { get; set; }
public ActionResult(ActionResultBase result, TValue value)
{
Result = result;
Value = value;
}
}
namespace Ticket8857.HttpApi.Controllers
{
public class MyCustomController : Ticket8857Controller
{
[HttpGet("get-something")]
public async Task<ActionResult<PagedResultDto<string>>> GetSomethingAsync()
{
var result = new PagedResultDto<string>(
totalCount: 1,
items: new List<string> { "Success" }
);
return new ActionResult<PagedResultDto<string>>(new ActionResultBase(), result);
}
}
}
If you think that this does not cover your case, I can assist you further.
Hello, thank you for providing the detailed information regarding your issue, and apologies for the delayed response.
It seems that the response is true for showing the error. However, I could not produce the same problem on my end since the request body might differ. That would be the best if you could provide a sample for the endpoint you have added to your project.
Meanwhile, you can also check this documentation to handle the http errors in a customized way https://abp.io/docs/latest/framework/ui/angular/http-error-handling#how-to-add-new-handler-service
Please feel free to reach out if you need additional assistance. Thank you again for your cooperation.
I am glad to hear that your problem has been resolved.
Thank you for confirmation. You can reach when you need further assistance.
I have sent you the email, but i don't think sth would come up from there. Probably it would work fine since it works on my macbook.
Thank you for sharing more details. As you have already mentioned, it should be working fine within this response. It is strange that it does not work on your windows machine, but in mac.
Apart from that, there are several ways to integrate the schematics source code to your project. My shortest recommendation is to clone the abp framework codebase
npm/ng-packs/packages/schematics directory.yarn build:schematics command under ng-packs directory.yarn link under npm/ng-packs/dist/packages/schematicsYou can let us know if you need further assistance.
Hello, we are sorry for replying this late. Even if I cannot see your example, I am assuming that you want to add ids to the pages dynamically.
Here is my suggestion for managing this using a service.
// dynamic-id.service.ts
import { inject, Injectable } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';
import { Renderer2, RendererFactory2 } from '@angular/core';
@Injectable({
providedIn: 'root',
})
export class DynamicIdService {
private renderer = inject(Renderer2);
private router = inject(Router);
private rendererFactory = inject(RendererFactory2);
constructor() {
this.renderer = this.rendererFactory.createRenderer(null, null);
}
initialize() {
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
this.assignIdToPage();
}
});
}
private assignIdToPage() {
setTimeout(() => {
const outlet = document.querySelector('router-outlet');
if (outlet) {
const pageElement = outlet.parentElement?.lastElementChild;
if (pageElement && !pageElement.hasAttribute('id')) {
const path = this.router.url.split('?')[0].replace(/\//g, '-').substring(1);
const pageId = `page-${path || 'home'}`;
this.renderer.setAttribute(pageElement, 'id', pageId);
}
}
});
}
}
Then you can initialize this in your app component
// app.component.ts
import { Component, inject } from '@angular/core';
import { DynamicIdService } from './unique-id/dynamic-id.service';
@Component({
selector: 'app-root',
template: `
<abp-loader-bar></abp-loader-bar>
<abp-dynamic-layout></abp-dynamic-layout>
<abp-gdpr-cookie-consent></abp-gdpr-cookie-consent>
`,
})
export class AppComponent {
private dynamicIdService = inject(DynamicIdService);
constructor() {
this.dynamicIdService.initialize();
}
}
Let us know your constraints, and we will be happy to refine the solution further.
I say that for some of my microservice modules it works. But for my main app it does not.
Thank you for providing more details. That would be the best if you can also share the api-definition request result with me through this email sumeyye.kurtulus@volosoft.com.
i already know that i can uninstall with dotnet uninstall command. But aren't you caching anything in some folder (maybe in an .abp folder some files related with logging)? At least it is clear that you are saving log in information somewhere cause when i uninstall and reinstall it it doesn't ask me about it.
You can run abp cli clear-cache command apart from doing uninstall/install operations.
I'm glad to hear that it functions properly on both machines. Apart from that,
how should i uninstall and clean everything related with cli from my windows machine?
You can manage cli installation using dotnet install/uninstall command here: https://abp.io/docs/latest/cli#installation
Volo.Abp.Cli is the old and Volo.Abp.Studio.Cli is the new one.
Where can i see the detailed logs about abp cli after i run the command?
There is no more detailed logs for this part except throwing the related error that is coming from here However, you can integrate the source code to your project and add custom Loggers.
Where can i get the source code of abp cli?
You can also reach full schematics source from here https://github.com/abpframework/abp/tree/dev/npm/ng-packs/packages/schematics
Thank you for providing more information. Since I could not produce your problem, could you send a sample project to this e-mail sumeyye.kurtulus@volosoft.com?
I have tried the same in my macbook. And it works over there. What can be wrong for my windows pc? Do you have any idea? I am sure that firewall is not blocking.
Hello, this should not depend on the operating system itself. Can you confirm that you have used exact the same url parameter for both trials? Because, schematics cannot reach the api and it may be running on http://localhost:44389 rather than https://localhost:44389
So, as @enisn says, you should check the version compatibilities of your package manager along with the node.js version.