我将拆分视图定义为:
<ons-split-view
var="noticies_split"
secondary-page="secundaria"
main-page="principal"
main-page-width="70%"
collapse="portrait">
</ons-split-view>
如果我连续定义两个模板,我得到一个“找不到页面:校长”,即:
<ons-template id="secundaria">
</ons-template>
<ons-template id="principal">
</ons-template>
如果我在它们之间定义第三个模板,它可以正常工作,即:
<ons-template id="secundaria">
</ons-template>
<ons-template id="aux">
</ons-template>
<ons-template id="principal">
</ons-template>
定义超过2/3的模板时,对于偶数位置的模板,我会得到相同的错误,但对于奇数位置则不会。
任何人都可以提供帮助吗?
我在github项目上发布了一个问题:ISSUE #392
我正在使用onsenui - v1.2.1 - 2014-12-01
答案 0 :(得分:1)
我在onsen-tabbar上得到了相同的结果。
我通过在onsen-tabbar标签
中移动onsen-template来修复它示例:
<ons-tabbar>
<div style="display:none">
<ons-template id="page1.html">
</ons-template>
<ons-template id="page2.html">
</ons-template>
<ons-template id="page3.html">
</ons-template>
</div>
<ons-tab page="page1.html" active="true">
</ons-tab>
<ons-tab page="page2.html">
</ons-tab>
<ons-tab page="page3.html">
</ons-tab>
</ons-tabbar>
希望它可以解决您的问题。
干杯...