我需要一些帮助,我有一个带有Dribbble用户列表的Ionic应用程序,使用他们的API。当我选择用户时,我想根据$ stateParams带来的ID来提供用户详细信息。
我是Angular和Ionic的新手,帮助会很棒! 我读过服务和子女状态,但我不知道如何正确地做到这一点。
这是存储库:https://github.com/matheusbaumgart/yo-ionic-eyedentify.git 如果你们有人可以看看。
非常感谢你。
答案 0 :(得分:0)
你走在正确的道路上:
function ($scope, $stateParams, Api, $ionicModal) {
$scope.patients = [];
$scope.selected = {};
// assign the variable from the previous state like this, then use it how you need
$scope.pid = $stateParams.patientId;