在离子应用程序中打开键盘问题

时间:2017-07-21 05:37:06

标签: javascript typescript ionic-framework ionic2

你好朋友,我是离子开发人员的新手,所以在我的应用程序中,我整合键盘插件,从页脚和焦点字段打开输入值。下面我使用链接插件

https://gist.github.com/Manduro/bc121fd39f21558df2a952b39e907754

在我的html页面中,我将其称为

<ion-content #content>
<ion-item no-padding>
<ion-label floating>Name (*) </ion-label>
<ion-input #txtGroupName type="text" [(ngModel)]="client.name"></ion-input>

    

<ion-footer no-padding no-margin class="custom-footer"  [keyboardAttach]="content">
      <button ion-button full no-padding no-margin (click)="onClickAddClientContact()">CREATE</button>
  </ion-footer>

当我运行上面的代码时,我得到错误,如错误错误:未捕获(承诺):错误:没有键盘提供商!

任何想法我怎么能解决这个问题?

1 个答案:

答案 0 :(得分:0)

这就是我在我的应用中使用的方式,没有页脚。没有问题。

<form class="loginForm">
                <div class="list">
                  <label class="item item-input">
                    <input type="text" class="input1" placeholder="Username" id='username'>
                  </label>
                  <label class="item item-input">
                      <input type="password"  class="input2" placeholder="Password" id="pass">
                  </label>
                </div>
    <button class="button" id="btn-submit" ng-click="submit()">Sign In</button>
            </form>