如何在onse-ui-1.3.1中使用ons-select?

时间:2015-05-06 01:54:38

标签: angularjs onsen-ui

我想在我的应用中使用ons-select。我已将其添加到我的代码中,然后调试应用程序,但模拟显示什么。顺便说一句,webstom警告我“找不到ons-select标签'。 那么如何在onse-ui-1.3.1中使用ons-select? 任何帮助都非常感谢。 代码:

<ons-select ng-model="mediaTypes.type" ng-change="search()">
    <option value="all" selected>All Media</option>
    <option value="musicVideo">Video</option>
    <option value="movie">Movie</option>
    <option value="music">Music</option>
    <option value="podcast">Podcast</option>
    <option value="tvShow">TV Show</option>
</ons-select>

1 个答案:

答案 0 :(得分:0)

我认为您正在寻找的是ons.platform.select()方法。然而,它是Onsen 1.3.2中添加的新功能,目前为under development。如果您不能等到它发布,您可以使用Onsen UI's master branch中的版本。希望它有所帮助!

修改

更新代码后,我意识到您正在寻找不同的东西,而不是ons.platform.select()。看起来标记<ons-select>已从Onsen UI中删除。普通的HTML <select>就足够了。