nativescript - 如何模拟移动应用程序上的后退按钮?

nativescript - How to simulate the Back button on a mobile app?

目前我正在使用 Nativescript 开发移动应用程序。我想通过单击 UI 中的一个组件来模拟“后退”按钮(当用户单击它时,它会导航回上一个屏幕)。

Scenario:
Page 1 --> Page 2
Page 2 : click on component to go back to Page 1

有办法吗?

谢谢你的时间。

在pageB.js

var frameModule = require("ui/frame");
var topmost = frameModule.topmost();

function onTap() {
    topmost.goBack();
}

exports.onTap = onTap;

在pageB.xml

<Button text="BACK" tap="onTap" />

更多详细信息,请参阅以下文档文章:

https://docs.nativescript.org/core-concepts/navigation#architecture-and-navigation