我在 GWT (1.6) 中使用 RequestBuilder,它成功地将字符串(格式化为日期)发送到我的 Web 服务器上的 PHP 脚本。然后我的 PHP 使用该字符串来查询 MySQL 数据库。然后我可以回显一个结果,该结果由 GWT 成功解释。
我的问题是我不只是想“回显”一个字符串。我想将一个数组发送回 GWT。这里的问题是 GWT 获得了一个“响应”类型的对象,而不是数组。
有谁知道我能做什么?这是一些代码:
PHP CODE:
<?php
require_once('../scripts/config.php');
$date = $GLOBALS['HTTP_RAW_POST_DATA'];
$query = mysql_query("SELECT * FROM eventcal WHERE eventDate = '$date'");
if (@mysql_num_rows($query)) {
while ($r=@mysql_fetch_assoc($query)) {
$id = $r["id"];
$primary = $r["primary"];
$secondary = $r["secondary"];
$eventContent = $r["eventContent"];
$region = $r["region"];
}
}
$array = array("$id", "$primary", "$secondary", "$eventContent", "$region");
echo "$array";
?>
GWT 代码(片段):
public void onChange(Widget sender) {
lb.setText("Date selected: " + calendar.getDate());
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
String current = df.format(calendar.getDate());
RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, URL.encode("http://www.kbehr.com/calendar/view_duty.php"));
try {
builder.sendRequest(current, new RequestCallback(){
public void onError(Request request, Throwable exception) {
requestFailed(exception);
}
public void onResponseReceived(Request request, Response response) {
String responseText = response.getText();
try {
processResults(responseText);
} catch (Exception e) {
Window.alert(responseText);
}
}});
}catch (RequestException ex) {
requestFailed(ex);
}
}});
fp.add(calendar);
fp.add(lb);
}
private void processResults(String something){
// process the array
}
我知道我可以使用 JSON,但我试过了,但无法让它工作。有任何想法吗?
谢谢...