Java code
String str = "{"officeName" : "name", "deviceName" : "device", "nickName" : "nick"}";
private native void test2(String str) /*-{
$wnd.test(str);
}-*/;
JavaScript code
function test(str) {
var obj = JSON.parse(str);
alert(obj.officeName);
alert(obj.deviceName)
alert(obj.nickName);
}
http://stackoverflow.com/questions/4935632/how-to-parse-json-in-javascript
'GWT' 카테고리의 다른 글
Widget에 마우스 포인터 변경하기 (0) | 2014.06.27 |
---|---|
Right Click Event (0) | 2013.10.16 |
CellTable ClickEvent(use SingleSelectionModel) & DoubleClickEvent (0) | 2013.08.26 |
[GWT] Open with Designer 로 열때 에러 날때... (0) | 2013.07.10 |