Angular - 导航



在 Angular 中,也可以进行手动导航。以下是步骤。

步骤 1 - 将以下代码添加到 Inventory.component.ts 文件中。

import { Component } from '@angular/core'; 
import { Router }  from '@angular/router';  

@Component ({  
   selector: 'my-app',  
   template: 'Inventory 
   <a class = "button" (click) = "onBack()">Back to Products</a>' 
})  

export class AppInventory {  
   constructor(private _router: Router){} 

   onBack(): void { 
      this._router.navigate(['/Product']); 
   } 
}

关于以上程序需要注意以下几点 -

  • 声明一个 html 标签,该标签具有与点击事件关联的 onBack 函数。因此,当用户点击此标签时,他们将被引导回 Products 页面。

  • 在 onBack 函数中,使用 router.navigate 导航到所需页面。

步骤 2 - 现在,保存所有代码并使用 npm 运行应用程序。转到浏览器,您将看到以下输出。

Application Using npm

步骤 3 - 点击 Inventory 链接。

Inventory Link

步骤 4 - 点击“返回产品”链接,您将获得以下输出,这将带您返回 Products 页面。

Back to Products
广告