我有以下的javascript代码。在Chrome,Firefox,Android模拟器,三星Galaxy S(Gingerbread 2.3.3)上的Firefox和iPod上的Safari上运行正常。在三星Galaxy S上的原生浏览器上它没有。
代码创建一个对象并测试对象上的值。第一次创建对象时它是正确的。第二次创建对象时,值不正确。
这是Javascript或V8或设备中的错误吗?你会如何解决它?
var Padding = function(pleft, ptop, pright, pbottom) {
this.top = 20;
this.left = 1;
this.right = 0;
this.bottom = 0;
this.left = pleft;
this.top = ptop;
this.right = pright;
this.bottom = pbottom;
};
function testPadding() {
var p;
p = new Padding(91, 92, 93, 94);
alert(p.left.toString() + "," + p.top.toString() + "," + p.right.toString() + "," + p.bottom.toString());
}
testPadding(); // 91,92,93,94 - correct
testPadding(); // 1,20,93,0 - should be 91,92,93,94
testPadding(); // 1,20,93,0 - should be 91,92,93,94
编辑:我发现为什么它在模拟器中有效。模拟器使用不同的JavaScript引擎。它使用JSC而不是V8。 http://code.google.com/p/android/issues/detail?id=12987中有一段代码可以帮助您找出它使用的引擎。模拟器使用JSC,三星Galaxy S使用V8。
答案 0 :(得分:1)
由于V8引擎如何进行垃圾收集和缓存,我想在开始返回结果之前没有使用该对象。您是否尝试将代码更改为以下内容?它是否每次都使用此代码返回预期结果?
var Padding = function(pleft, ptop, pright, pbottom) {
this.top = (ptop != null) ? ptop : 20;
this.left = (pleft!= null) ? pleft: 1;
this.right = (pright!= null) ? pright: 0;
this.bottom = (pbottom!= null) ? pbottom: 0;
};
function testPadding() {
var p;
p = new Padding(91, 92, 93, 94);
alert(p.left.toString() + "," + p.top.toString() + "," + p.right.toString() + "," + p.bottom.toString());
}
testPadding(); // ?
testPadding(); // ?
testPadding(); // ?