Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将大型 GWT 应用程序从 gwt-ext 迁移到本机 GWT v2.4。在 gwt-ext 中有一个名为 JavaScriptObjectHelper 的类。原生 gwt 库中是否有对应的类?
来自其他地方的一些方法JavaScriptObjectHelper可用:JavaScriptObject.createObject()and createArray(), JsArrayand friends,Element的方法(getProperty, getAttribute, 等),当然Boolean.valueOf()还有类似的方法 on Integer, Float,Date等。
JavaScriptObjectHelper
JavaScriptObject.createObject()
createArray()
JsArray
Element
getProperty
getAttribute
Boolean.valueOf()
Integer
Float
Date
但是,其他一些方法没有等效方法:apply, arrayConvert,convertMapToJavaScriptArray等。
apply
arrayConvert
convertMapToJavaScriptArray