White Blank Screen in Ionic on Arabic Translation

て烟熏妆下的殇ゞ 提交于 2019-12-11 19:16:10

问题


I am developing an Ionic app in which I am also using angular-translate lib. The app works in all views in English but when I switch to Arabic, on some views it work fine but on some of the views show a white blank screen after a blink of the original view with nothing in console.

It is very strange when i click on inspect element, the view appears and there is a white flash when switching from one view to another.

It only happens when I select Arabic as a language. It works fine in English lang.

What could be the possible reason and how can I overcome it?

PS. I have whitelist installed


回答1:


I had the same problem, after installing the apk file on my real live mobile device, the blank white screen was coming and nothing else appear ! then I saved the translate library JS file to my local ionic project and changed on index.html :

<script src="http://cdnjs.cloudflare.com/ajax/libs/bower-angular-translate/2.0.1/angular-translate.min.js"></script>

to

<script src="lib/translate/angular-translate.min.js"></script>



回答2:


I am also looking for an answer to this, I have also tried putting all my translations in arrays too and skipped angular-translate altogether




回答3:


I had the same blank screen and when I touch the location of a button or an input box, the whole view is shown.

my problem was not related to external libraries but I had style.css having this

body{direction: rtl;}

I changed it to be specific to the form tag only and the blank page disapeared



来源:https://stackoverflow.com/questions/36409609/white-blank-screen-in-ionic-on-arabic-translation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!