skip to Main Content

Javascript – Fetch Parameter Value From Function

Using Angular, I have a function being called on click and I'm passing someValue to it. Example: <button (click)="callFoo(bar)">Click Me!</button> Now, my TS code is something like this: callFoo(gotInput){ console.log("Print: ", this.someFormGroup.controls.gotInput.value) } I'm unable to provide the value fetched…

VIEW QUESTION

Angular Authentication/Authorisation with Azure AD connecting to .net Core WebAPI

Followed countless tutorials regarding this scenario. https://learn.microsoft.com/en-us/azure/active-directory/develop/scenario-spa-app-registration https://learn.microsoft.com/en-us/samples/azure-samples/ms-identity-ciam-javascript-tutorial/ms-identity-ciam-javascript-tutorial-2-call-api-angular/ We have an Angular front end, talking to a .net core API. We have set up the application in Azure as an SPA, created roles, and assigned users to those roles. We…

VIEW QUESTION
Back To Top
Search