javascript – 如何通过AJAX将HTML5 sqlite结果集发送到服务器

假设我得到的结果如下:db.transaction( function(transaction) { transaction.executeSql( SELECT col1, col2, col3 FROM table;,[],function(transaction, result){//package the result in here somehow to sen...

假设我得到的结果如下:

db.transaction( 
    function(transaction) { transaction.executeSql( 
    'SELECT col1, col2, col3 FROM table;',
     [],function(transaction, result){

     //package the result in here somehow to send to the server via AJAX

},errorHandler);

我正在寻找特定的代码(而不是说“序列化结果”),以便将通过AJAX发送的结果“打包”到服务器的最佳方式.一个JQuery解决方案很好.

解决方法:

在JS中有一个通用的序列化解决方案:

JSON.stringify(result);

本文标题为:javascript – 如何通过AJAX将HTML5 sqlite结果集发送到服务器

基础教程推荐