gpt4 book ai didi

jquery - Mobiscroll 和 Ionic 实现

转载 作者:行者123 更新时间:2023-12-01 04:40:34 25 4
gpt4 key购买 nike

我正在尝试让 Mobiscroll 与 Ionic 配合使用,但似乎无法实现?

这就是我正在尝试做的事情。我已经像这样实现了 jquery 和 mobiscroll:

<!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">

<link href="css/mobiscroll.custom-2.14.4.min.css" rel="stylesheet" type="text/css" />

<!-- 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/jquery js -->
<script src="lib/jquery/jquery-1.11.3.js"></script>

<!-- 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>
<script src="js/mobiscroll.custom-2.14.4.min.js"></script>
</head>

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

然后我在我的controllers.js中完成了这个:

angular.module('myApp.controllers', [])

.controller('mobiCtrl', function ($scope) { // create controller for the module
// create function which calculates the age given the birthday as a datetime object
$scope.settings = {
theme: 'ios',
display: 'bottom',
group: true
};
});

最后在我的 start.html 中完成了这个:

<ion-view view-title="Start">
<ion-content ng-controller="MyController">

<div ng-controller="mobiCtrl">
<select ng-model="myselect" mobiscroll-select="settings">
<optgroup label="A">
<option value="Alan">Alan</option>
<option value="Anderson">Anderson</option>
</optgroup>
<optgroup label="E">
<option value="Eva">Eva</option>
<option value="Esther">Esther</option>
</optgroup>
<optgroup label="M">
<option value="Michael">Michael</option>
<option value="Margared">Margared</option>
</optgroup>
</select>
</div>

</ion-content>
</ion-view>

现在,Mobiscroll 未显示,但显示常规选择字段!?

我在网上搜索了这方面的教程,但没有运气......有人成功地将 mobiscroll 与 ionic 集成还是我做的都是错的?

最佳答案

这很可能是因为您还没有注入(inject) mobiscroll select 模块。我知道您提到了 jquery,但我认为您正在尝试角度实现,因为您正在范围上创建一个设置对象。

这将解决您的问题,或者至少让您更近一步:

angular.module('myApp.controllers', ['mobiscroll-select'])

关于jquery - Mobiscroll 和 Ionic 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38688791/

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