如何使用 ionic.Platform
how to use ionic.Platform
我对使用 ionic/AngularJS 很陌生,我想知道如何使用 ionic.Platform 打印当前设备。现在我有
var currentPlatform = ionic.Platform.platform();
在我的 main.html 控制中。有没有办法将它发送到 html 页面,或者我的处理方式完全错误?
从您的控制器数据发送到视图使用 应用程序模型 $scope ,意味着只需将您的变量分配给范围变量并直接在视图中调用控制器的地方获取它。
示例:
angular.module('scopeExample', ['ionic'])
.controller('MyController', ['$scope', function($scope) {
var currentPlatform = ionic.Platform.platform();
$scope.currentPlatform = currentPlatform;
}]);
并在 查看 中访问
<body ng-app="scopeExample">
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content ng-controller="MyController">
{{currentPlatform }}
</ion-content>
</ion-pane>
</body>
有关详细信息,请参阅以下链接:
希望对您有所帮助。
我对使用 ionic/AngularJS 很陌生,我想知道如何使用 ionic.Platform 打印当前设备。现在我有
var currentPlatform = ionic.Platform.platform();
在我的 main.html 控制中。有没有办法将它发送到 html 页面,或者我的处理方式完全错误?
从您的控制器数据发送到视图使用 应用程序模型 $scope ,意味着只需将您的变量分配给范围变量并直接在视图中调用控制器的地方获取它。
示例:
angular.module('scopeExample', ['ionic'])
.controller('MyController', ['$scope', function($scope) {
var currentPlatform = ionic.Platform.platform();
$scope.currentPlatform = currentPlatform;
}]);
并在 查看 中访问
<body ng-app="scopeExample">
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content ng-controller="MyController">
{{currentPlatform }}
</ion-content>
</ion-pane>
</body>
有关详细信息,请参阅以下链接:
希望对您有所帮助。