gpt4 book ai didi

android - 转到 ionic 框架中的特定页面

转载 作者:行者123 更新时间:2023-11-29 14:48:35 24 4
gpt4 key购买 nike

我遇到了一个问题,我必须使用 Controller 在 ionic 框架中打开特定页面。我必须转到以下页面

#/tab/hotel_details/1

当我在 ionic 弹出窗口中单击确定按钮时

 $scope.showAlert = function() {
var alertPopup = $ionicPopup.alert({
title: 'Click OK for further details',
});
alertPopup.then(function(res) {
//Go to a specific page
});
};

我不能使用 $state.go("tab.hotel_details"); ,因为我必须去 hotel_details/1为了进一步开发我的应用程序,我必须摆脱上述问题。

最佳答案

您可以在调用 $state.go 的第二个参数中传递 id :

$state.go("tab.hotel_details", { "id": id })

然后,在您的 Controller 中,您可以从 $stateParams 中检索值:

var id = Number($stateParams.id)

引用:Angular-ui State

关于android - 转到 ionic 框架中的特定页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26467808/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com