0

我正在尝试使用 PhoneGap 框架开发离线移动应用程序。我正在使用 sqlite PhoneGap 访问我的本地数据库。

我的应用程序使用了 2 个表,表 1 包含值并包含表 2 中值的标识符,要显示数据我必须等待表 2 的恢复值与recover_type_client传递值的 函数IdClient

我怎样才能等到我检索TXT到显示的值

function successDB(tx, results)
{
    for( var i=0; i<results.rows.length; i++  )
    {
        TXT = recover_type_client(results.rows.item(i).IdClient )//Function 
        $("#tbod").append('<tr><td><input type="checkbox" name="vehicle" value="'+results.rows.item(value).IdPrestation+'"></td>'
                        +'<td> '+results.rows.item(value).RefPrestation                                               +' </td>'
                        +'<td> '+TXT                                                                      +' </td>'
                        +'<td> '+results.rows.item(value).CoordonneesAdressePrestation                                +' </td>'
                        +'<td> '+tab_client[i]  
                        +'</tr>');
    }
}
4

1 回答 1

0

你有用

   results.rows.item(value).IdPrestation

但是价值没有定义

于 2012-12-18T09:53:06.353 回答