MKMIke Kenny Bacabisindevken4u.hashnode.dev·Nov 29, 2024 · 1 min readActivity 36: Angular CRUD with API IntegrationI COPIED THE IMPLEMENTION OF THE EXAMPLE IN THE GITHUB TO THE THREE REMAINING MENU, MENU-CATEGORY, AND RESTAURANT-CATEGORY I CAREFULLY CONNECT THE SERVICES FROM THE COMPONENT TYPESCRIPT TO ENSURE THAT DATA FLOW FROM THE ANGULAR APP TO THE API IS WORK...00
MKMIke Kenny Bacabisindevken4u.hashnode.dev·Nov 28, 2024 · 1 min readActivity 34: Test API in POSTMANCreate a new collection Click the “plus” icon to the left side of postman For this activity, I will create five collections Add request by clicking the three dots beside the collection name Choose add “request” You can choose what kind request you...00
MKMIke Kenny Bacabisindevken4u.hashnode.dev·Nov 19, 2024 · 2 min readActivity 32: Angular Library Gridrecipe.service.ts import { Injectable } from '@angular/core'; import { Book } from '../models/library.mode'; @Injectable({ providedIn: 'root', }) export class LibraryService { private bookList: Book[] = [ { title: 'The Great Gatsby', ...00
MKMIke Kenny Bacabisindevken4u.hashnode.dev·Nov 19, 2024 · 2 min readActivity 31: Angular Ecommerce Product Listproduct.service.ts import { Injectable } from '@angular/core'; import { Product } from '../model/product.model'; @Injectable({ providedIn: 'root', }) export class ProductService { private productList: Product[] = [ { price: 29.99, ...00
MKMIke Kenny Bacabisindevken4u.hashnode.dev·Nov 11, 2024 · 3 min readActivity 30: HTTP Status Codes1xx (Informational) Purpose: Indicate that the request has been received and the process is continuing. Example: These are rare in RESTful APIs and mainly used in cases where the client needs feedback that the request is being processed (e.g., 100 C...00