代码:
Ext.define("app.view.Login", {
extend:'Ext.Panel',
fullscreen:true,
xtype:'login',
requires:[
'Ext.form.Panel',
'Ext.Button',
'Ext.field.Text',
'Ext.field.Password',
'app.view.Main'
],
config:{
fullscreen:true,
cls:'login',
style:'background-image:url("img/login.png"); background-size:100% auto;',
scrollable:false,
items:[]
}
...
在我的app.js中:
launch:function () {
Ext.Viewport.add(Ext.create('App.view.Login'));
}
它在Chrome浏览器中运行良好,但只在iPhone上显示空白页面。有谁知道可能导致这个问题的原因?我做错什么了吗?或者这是一个错误?
答案 0 :(得分:0)
我在iOS模拟器5.0中尝试过你所做的工作。问题可能是添加app.view.Main。尝试没有它需要也足够,如果你提供全屏:真在配置。不要重复自己。