使用model属性作为ng-if条件,获取错误

时间:2014-12-05 11:03:32

标签: angularjs ionic-framework angular-ng-if

错误是当我使用model的属性作为angular ng-if指令中的条件时。它发生错误

TypeError: Cannot read property 'then' of undefined

我的HTML是:

 <div class="item-input-wrapper">
   <i class="icon ion-ios7-search placeholder-icon"></i>
   <input type="search" ng-model="keywords" placeholder="Search" >
   <button ng-if="keywords.length"
    class="button button-icon ion-ios7-close-outline input-button"
    ng-click="clearSearchWords()">
   </button>
 </div>

我试图在新的离子项目中复制此代码,并且可以在其他项目中完美地执行。 Ng-if是内置角度指令。为什么会导致不同的产出? 那是解决它的方法吗?

0 个答案:

没有答案