gpt4 book ai didi

azure - Cordova/Ionic 框架与 ADAL 配合使用

转载 作者:行者123 更新时间:2023-12-03 00:13:37 24 4
gpt4 key购买 nike

我是移动开发新手,正在努力使用 Azure 进行身份验证。我正在使用 Mac 进行开发工作。我创建了基于 sidemenu 模板的 Ionic 项目,并向其中添加了插件“cordova-plugin-ms-adal”。为了确保代码有效,我在 doLogin 方法中添加了以下几行。我收到错误 -“VM370:1 Uncaught ReferenceError: Microsoft 未定义(…)

非常感谢您的帮助。

  $scope.doLogin = function() {
console.log('Doing login', $scope.loginData);


var AuthenticationContext = new Microsoft.ADAL.AuthenticationContext("https://login.microsoftonline.com/abcinc.onmicrosoft.com");
};

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>

<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">

<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->

<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>

<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>

<!-- your app's js -->
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>
</head>

<body ng-app="starter">
<ion-nav-view></ion-nav-view>
</body>
</html>

最佳答案

我还不能发表评论 - 因此在回答中

我从头开始创建了一个 Ionic Tab 示例应用程序

添加了 cordova-plugin-ms-adal

向其中一个 View 添加了导航按钮

<ion-nav-buttons side="primary">
<button class="button" ng-click="doLogin()">
LOGIN
</button>
</ion-nav-buttons>

向 View Controller 添加 doLogin 方法

.controller('DashCtrl', function ($scope) {
$scope.doLogin = function () {
console.log('Doing login');
var AuthenticationContext = new Microsoft.ADAL.AuthenticationContext("https://login.microsoftonline.com/abcinc.onmicrosoft.com");
};
})

你也有同样的方法吗?

关于azure - Cordova/Ionic 框架与 ADAL 配合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36237368/

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