1

编码:

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 上显示空白页面。有谁知道什么可能导致这个问题?我做错什么了吗?或者它是一个错误?

4

1 回答 1

0

我尝试了您在 iOS 模拟器 5.0 中为我所做的工作。问题可能是添加 app.view.Main。如果你在配置中给出 fullscreen:true 也可以尝试不使用它。不要重复自己。

于 2012-09-09T10:50:45.030 回答