这是我对离子论坛原来的问题 。 所以我想我可能希望从这里得到一些帮助,已经有它没有任何反应了一段时间:(
所以,我的问题是真正的冠军。 我想用我的自定义图像作为我的离子应用离子标签的图标。 我检查了,它通过工作ionic serve
做它,如下所示:
tabs.html
<ion-tabs class="tabs-icon-bottom tabs-color-active">
<!-- this icon does not load -->
<ion-tab title="LIVE" icon="tab-live energized" href="tab/live">
<ion-nav-view name="tab-live"></ion-nav-view>
</ion-tab>
<ion-tab title="REPLAY" icon="tab-replay energized" href="tab/replay">
<ion-nav-view name="tab-replay"></ion-nav-view>
</ion-tab>
<ion-tab title="SETTINGS" icon="ion-android-options energized" href="tab/setting">
<ion-nav-view name="tab-setting"></ion-nav-view>
</ion-tab>
</ion-tabs>
style.css
...
.tab-live {
background-repeat: no-repeat;
background-size: contain;
background-position-x: center;
background-image: url('../img/live.png');
}
.tab-replay {
background-repeat: no-repeat;
background-size: contain;
background-position-x: center;
background-image: url('../img/replay.png');
}
然而,当我在我的Android设备上运行应用程序时,它说Failed to load resource: net::ERR_FILE_NOT_FOUND
我的tab-live
和tab-live
图标将不会加载。 据我了解,当应用程序试图之前到内存被加载到加载一定的资源文件出现此错误。 但只有tab-live
图像加载失败,而所有其它图像加载罚款。
如果它可能是一个问题,在tab/live
页是应用程序启动时加载什么,和我的尺寸live.png
文件大约5.54kb
。 我有我在此使用其他图片tab/live
页较大这一形象,但它加载很好,我使用img
与标签ng-src={{ btnImage }}
周围改变它。
所以,这可能是造成这个问题,我怎么能解决这个问题?
提前致谢。