Skip to main content

Questions tagged [angular]

Filter by
Sorted by
Tagged with
0 votes
1 answer
166 views

(For context I am developing in Angular) Historically my applications have tended towards the layered architecture that the Angular fraemwork leads you into. However I feel that the next application I ...
royneedshelp's user avatar
0 votes
0 answers
48 views

I’m writing a web application with an Angular client and a Pyramid/Python server. I need to dynamically interface with an external cloud application, with two requirements: When the end user approves ...
thomasc's user avatar
2 votes
2 answers
3k views

I was reading these best practices for Angular project specifically for understanding models and DTOs. What I have understood in general from different resources and the above one also is that We ...
Pawan Nogariya's user avatar
1 vote
4 answers
491 views

I am looking to create a multi-page web app. I had begun the construction of this web app in angularJS when I realized this was no longer being supported. I am early enough in development that it isn'...
Runeaway3's user avatar
  • 173
0 votes
2 answers
1k views

I've to store a static pdf with an user guide of my application. I'm using Spring boot and Angular 12, what is the best way to store it? Put the file on resource folder of Spring boot? Put the file ...
Accollativo's user avatar
0 votes
0 answers
219 views

I have a multitenant application where a user can belong to multiple tenants. I'm using Identity-Server 4 for the authentication. I have two applications Angular and API. When a user is not ...
Replay's user avatar
  • 109
2 votes
0 answers
70 views

We're building a new feature for an online editor that the user will not edit the document, but will be able to highlight & propose edits on the document. Very similar to google documents' ...
Bora's user avatar
  • 153
-2 votes
1 answer
59 views

I know when building an Angular app (or other frontend framework with auto UI update by change detection), using function in a template is not recommended since it will result in the function being ...
Ricky Mo's user avatar
3 votes
1 answer
474 views

TL;DR I have a moderately sized/complexity web application (Angular 11) in one repo and a standalone REST API (.NET Core 3 / C#) in another repo, and am trying to figure out the most efficient way to ...
Kurtis Jungersen's user avatar
-3 votes
1 answer
496 views

After hours of reading blog posts, I understand that React has one-way data binding, and Angular has two-way. But I don't actually know what that means.... React import { useState } from 'react'; ...
Paul Draper's user avatar
  • 6,088
0 votes
1 answer
45 views

Goal: Have a common and same menu content link (for instance Home, about, consumer product, support) when you are using Angular, NativeScript and Android. Background: The menu contain seven different ...
HelloWorld1's user avatar
2 votes
2 answers
546 views

I was looking at the angular documentation and noticed this code: export class QuestionBase<T> { value: T; key: string; label: string; required: boolean; order: number; controlType: ...
p32094's user avatar
  • 187
-1 votes
2 answers
308 views

Should Developers conduct Sanity Testing in Dev Public Server, before sending code over to QA team? We are developing a Property Application. Our company utilizes C# .Net Core with Angular, and ...
user avatar
3 votes
2 answers
371 views

I am creating a MEAN stack application. I have noticed by chance that whenever I send the credentials of the user to the backend, I can "fish" it from the network option on the browser (F12). See ...
Jorge Guerra Pires's user avatar
2 votes
1 answer
725 views

I am trying to determine which is the best arquitecture to my application, I am planning to use python, mysql, angular and flask as an intermediate between python and angular. I have all the shots of ...
agm's user avatar
  • 147
1 vote
0 answers
173 views

Please forgive me if I am mixing up the terminology here, I'm a bit unfamiliar with it. I wanted to find a way to support extensibility in a web application; I wanted a web application that was ...
michael's user avatar
  • 119
1 vote
0 answers
84 views

We're developing a big project for our company, and they asked us to use Angular even though none of the devs have any considerable experience with it. The back-end is C#/.NET Core with ABP. My ...
Matheus Lacerda's user avatar
1 vote
0 answers
142 views

Updating the libraries in my Angular 8/Electron app produced compilations errors eg, in Electron's menu.ts file, Also, a few of the project external libraries contain @ts-ignore lines, suppressing ...
schrödingcöder's user avatar
1 vote
0 answers
147 views

I was reading about the history of Microsoft and Webforms. How people strayed away from Webforms because it mixes business logic with display/presentation logic. So when reading Angular 8, and seeing ...
user avatar
0 votes
1 answer
485 views

For libraries like NGRX - Actions or NGXS - Actions when creating an action you create an interface or class like so: bar-action.ts export class Foo { static type: string = 'bar-foo'; } // etc ...
Erik Philips's user avatar