Failed to load webpage with error: Frame load interrupted

后端 未结 2 599
轮回少年
轮回少年 2020-12-19 00:53

I see this has been asked before but I dont see any solutions:

So Im using Cordova 2.5 to build an iPad app on iOS 6.1.2

My app.coffee:

jQuer         


        
相关标签:
2条回答
  • 2020-12-19 01:05

    I could solve it by using window.location.hash

    0 讨论(0)
  • 2020-12-19 01:16

    Damn this waisted allot of time, the answer was so dumb and simple.

    Rather than having the links in the html as :

    /#/foo/bar/
    

    It should just be

    #/foo/bar/
    

    this makes sense, with the leading / the page will reload, and thats why I got that error.

    Hope it helps someone

    0 讨论(0)
提交回复
热议问题