我目前处于需要删除 ember js 选择框中使用的 metamorph 标签的情况。我使用了一个 JS 插件,它将我的选择框变成了我使用 css 自定义的样式选择框。
我目前在我的视图中有这个 ember js 选择框。
<script type="text/x-handlebars" data-template-name="opportunities">
{{view Ember.Select
contentBinding="controller.filter"
optionLabelPath="content.metacode"
optionValuePath="content.description"
class="mydds opportunitylistcategory"}}
</script>
我只需要一种删除变质代码的方法,但是对于 ember 选择框仍然启用绑定等...我已经阅读了有关使用可排序的 jquery 删除变质数据的信息,但这对我没有帮助。提前致谢!