- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 ionic 的新手,有一个简单的问题,令我惊讶的是,我在任何地方搜索都找不到答案。
我想要的是像这样实现简单的页面导航: https://ionicframework.com/docs/api/nav
手机下方的源代码提供了 javascript 代码,但我想要 Angular/ ionic 代码。
任何其他文档都使用了复杂的代码,出于某种原因我无法理解。
我如何使用最简单的 IONIC-5/Angular 代码(使用“ion-nav”)实现这个目标?
HTML:
这是我到目前为止所做的:
<ion-nav root="rootPage">
<ion-header translucent>
<ion-toolbar>
<ion-title>Nav</ion-title>
</ion-toolbar>
</ion-header>
<ion-content fullscreen>
<ion-list *ngFor="let page of techs">
<ion-item button (click)="showDetail(page)">
<ion-label>
<h3>{{page.title}}</h3>
</ion-label>
</ion-item>
</ion-list>
</ion-content>
</ion-nav>
TS:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-list',
templateUrl: './list.page.html',
styleUrls: ['./list.page.scss'],
})
export class ListPage implements OnInit {
constructor() { }
ngOnInit() {
}
rootPage:any;
techs = [
{
'title': 'Angular',
'icon': 'angular',
'description': 'A powerful Javascript framework for building single page apps. Angular is open source, and maintained by Google.',
'color': '#E63135'
},
{
'title': 'CSS3',
'icon': 'css3',
'description': 'The latest version of cascading stylesheets - the styling language of the web!',
'color': '#0CA9EA'
},
{
'title': 'HTML5',
'icon': 'html5',
'description': 'The latest version of the web\'s markup language.',
'color': '#F46529'
},
{
'title': 'JavaScript',
'icon': 'javascript',
'description': 'One of the most popular programming languages on the Web!',
'color': '#FFD439'
},
{
'title': 'Sass',
'icon': 'sass',
'description': 'Syntactically Awesome Stylesheets - a mature, stable, and powerful professional grade CSS extension.',
'color': '#CE6296'
},
{
'title': 'NodeJS',
'icon': 'nodejs',
'description': 'An open-source, cross-platform runtime environment for developing server-side Web applications.',
'color': '#78BD43'
},
{
'title': 'Python',
'icon': 'python',
'description': 'A clear and powerful object-oriented programming language!',
'color': '#3575AC'
},
{
'title': 'Markdown',
'icon': 'markdown',
'description': 'A super simple way to add formatting like headers, bold, bulleted lists, and so on to plain text.',
'color': '#412159'
},
{
'title': 'Tux',
'icon': 'tux',
'description': 'The official mascot of the Linux kernel!',
'color': '#000'
},
];
showDetail(page:any){
const tech = techs.find(tech => tech.title === title);
nav.push('nav-detail', { tech });
}
}
P.S: nav.push('nav-detail', { tech });
报错(我不知道这里的 nav 是什么)
最佳答案
就像在 the docs 中解释的那样ion-nav
其实是用在一些非常特殊的场景中。
Nav is a standalone component for loading arbitrary components and pushing new components on to the stack.
和
Unlike Router Outlet, Nav is not tied to a particular router. This means that if we load a Nav component, and push other components to the stack, they will not affect the app's overall router. This fits use cases where you could have a modal, which needs its own sub-navigation, without making it tied to the apps URL.
因此,如果您使用 Angular,大多数时候您可以只使用 NavController
,它在幕后使用 Angular Router。
请看这个 Stackblitz demo .
您可以看到一个非常简单的页面示例,该页面显示了项目列表,单击每个项目会打开“详细信息”页面:
在查看该演示项目时,请注意 app-routing.module.ts
文件(其中定义了 home 和 details 模块的路由)以及数据的方式从 HomePage
发送到 DetailsPage
。
// app-routing.module.ts file
// ...
const routes: Routes = [
{
path: "home",
loadChildren: () =>
import("./pages/home/home.module").then(m => m.HomePageModule)
},
{
path: "details/:id",
loadChildren: () =>
import("./pages/details/details.module").then(m => m.DetailsPageModule)
},
{
path: "",
redirectTo: "/home",
pathMatch: "full"
}
];
// ...
// home.apge.ts file
// ...
public openItem(itemId: number): void {
this.navCtrl.navigateForward(["details", itemId]);
}
// ...
// details.page.ts file
// ...
ngOnInit() {
// "id" is the name of the parameter in the
// app-routing.module.ts file:
// ==> path: "details/:id",
const itemId = +this.route.snapshot.params.id;
this.item = this.itemsService.getItem(itemId);
}
// ...
我肯定会建议您看一下 Angular Router docs 和 Ionic - Angular Navigation docs 为了更加熟悉 Ionic 5 中使用的路由系统。
关于angular - ionic 5 使用 "ion-nav"导航到带后退按钮的简单页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65135988/
浏览器或类似浏览器的应用程序中的后退和前进按钮暂时导航(用户导航页面的顺序),这可能不一定反射(reflect)页面的逻辑顺序。是否有任何研究探讨这如何影响用户的心理模型?关于如何提高可用性和减少困惑
如果你去http://www.deviantart.com/并等待几秒钟,以便在引擎盖下加载 javascript,您可以单击一个链接,而不是转到该链接,您将转到 #/someId。您可以后退/前进。
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
This question already has answers here: How to stop audio from playing when back button is pressed?
Visual Studio 有一个名为 MouseNavi 的插件它允许您使用鼠标拇指按钮来浏览您的历史记录。 Eclipse 是否存在类似的扩展? 最佳答案 我不知道有任何 Eclipse 插件可以
我在grails上开发了一个小应用程序,第一页是我提供的邮政编码,可以按商店搜索附近的商店并选择它,然后按下一步按钮,第二页上是输入客户详细信息,然后按下一步按钮在第三页上显示输入的值,然后保存它。现
我有一个带有表单的页面,我试图在其中防止重复提交,这非常简单(以防万一有人好奇,我使用了这个 $("form").submit(function() { setTimeout(function
在过去的两天里,我一直在用一个恼人的小故障敲我的头,希望有人能解释一下。 基本设置:我有一个带有播放器的 AVPlayerLayer, View 中有一个平移手势识别器,我希望用户能够来回滑动手指,视
我有一个相当具体的用例。 假设我从页面 A 导航到页面 B(添加一个历史状态)。然后,在页面 B 上,我通过打开模式与该页面进行交互。但模式的实现方式是在单击浏览器后退按钮时关闭。 当模式打开时: n
我以前自己尝试过,但失败了。如何将 JButton 添加到 JFrame 以将其带回到之前打开的 JFrame 或“主页”框架。 在我的应用程序中,我有 4 个 JFrame,主要的和 3 个可通过按
想法是显示消息,这将通知用户,当他使用“后退”按钮时,应用程序的ajax部分可能会错误地工作。是的,有很多讨论,但没有解决方案。我发现最好的:在服务器端存储有关最后一页的信息,并通过 ajax 检查当
我有一个带有Fragment的Activity,并且有很多交易,所以后退按钮通常只是回滚Fragment交易 .但我需要检测最后一次按下。 我不能使用 onPause 方法,因为我不想在用户按下主页或
我目前使用Glide库播放GIF如下。 Glide.with(this).load(gifUrl).into(ImageView); 这很好用,但我希望用户可以选择倒回、暂停和转发 GIF。我在想只是
我正在开发一个 WPF 桌面应用程序,我有一个主窗口,我使用框架控件导航到不同的页面。它工作得很好。但我希望删除后退/前进。我该怎么做 ?请在这方面帮助我! 最佳答案 设置 NavigationUIV
我正在游戏结束时显示插页式广告。当用户快速按下“后退”按钮时,有时会发生崩溃: java.lang.IllegalStateException at android.media.MediaPlayer
我想禁用导致 Chrome 后退或前进的两指滑动。 我有一个网站,如果用户没有专门保存,他可能会失去工作进度。 我试过使用 window.onbeforeunload但是,如果我在 url 中有哈希值
后退箭头在 Xcode 中损坏? 是否有键盘命令可以一次后退/前进一个文件。 Xcode 3.2更改了 Cmd-Opt 的行为。正如另一个问题中所指出的,它们不像以前版本的 Xcode 那样在文件级
我有这些复选框 Menu Filters Select All Unselect All Vegan Vegetar
我想在按下返回按钮时将我当前的 flutter 页面重定向到主页,将重定向。当我按返回按钮时,主页/ Activity 应开始。我在主页中有多种选择,在当前页面中,如果用户不想选择它们,我可以显示眼睛
按住下一个按钮时,音频播放器速度加快... 代码代表一切 main question : How to continue to normal ? 这是我的尝试 http://jsfiddle.net/
我是一名优秀的程序员,十分优秀!