默认使用 DWR 对 IE 9 和 chrome 中的值进行排序
我有一个地图,其中包含 UI 类中的年份信息 {'2012':"2012",'2011':"2011",'2010':"2010"} ,如果我将此地图传递给 javascript 以使用 DWR 构建下拉列表, Firefox 在我们通过时显示下拉列表,但在 IE9 和 chrome 中,值正在排序,并且在下拉列表中显示从 2010 年到 2012 年。我可以知道为什么它是这样建造的吗?任何人都可以帮助解决这个问题。
我使用的是dwr 2.0版本。
I have a map contains years information in UI class as {'2012':"2012",'2011':"2011",'2010':"2010"} , If I pass this map to javascript to build dropdown using DWR, Firefox displays the drop down as we passed But in IE9 and chrome the values are sorting and it is displaying from 2010 to 2012 in drop down. May I know why it is building like this ?. Can anyone help on this Issue.
I am using dwr 2.0 version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 for..in 来迭代对象属性,那么您应该知道它们返回的顺序取决于实现,并且不能保证遵循任何特定的系统或模式。
还知道不同的浏览器将以不同的顺序返回属性。如果顺序很重要,请使用其他方法来确定顺序,并仅使用对象为属性名称分配值。
If you are using for..in to iterate over the object properties then you should know that the order in which they are returned is implementation dependent and is not guaranteed to follow any particular system or pattern.
It is also known that different browsers will return the properties in a different order. If order is important, use some other method to determine the order and use the object only to allocate values to property names.