0

我在我的应用程序 Android 中使用了cordova SQLite 存储插件。我需要从 2 个表中获取结果以显示在视图中,我的表是“帖子”和“元数据”...

所以我可以发布“产品”(帖子表),价格和颜色等信息保存在元表中。问题是当我需要显示产品的元数据时,我需要列表并在从表元数据中获取信息后,但我需要在主要结果中添加元数据(来自第一个查询)。

居然被退回

    results.rows.item(i).id
    results.rows.item(i).title
    results.rows.item(i).date

我想添加其他类似的项目

    results.rows.item(i).id
    results.rows.item(i).title
    results.rows.item(i).date
    results.rows.item(i).price
    results.rows.item(i).color

但是不知道该怎么做,你能帮帮我吗?

这是我的功能...

function query( sql, callback ){

    db.transaction(function(transaction) {

        var executeQuery = sql;
        transaction.executeSql(executeQuery, [ ],
        function(tx, result) {
            //Success

            if( typeof( callback ) == 'function' ){
                callback( result );
            }
        },
        function(error){
            // Error
        });
    }
}


function get_meta( data, strMetaKey, callback ){

    for( i=0; i < data.length; i++ ){

        // QUERY
        query( /* SQL WHERE id = i.id AND meta_key = strMetaKey*/, function( result ){


            // here is my problem, I can't add 'price' to data
            data.rows.item( i ).price = result.rows.item(0).meta_value;
        });

    }

    if( typeof( callback ) == 'function' ){
        callback( data );
    }
}



new_data = '';


// getting products
query( /* my query */, function( result ){


    // getting price
    get_meta( result, 'price', function( result ){
        new_data = result;
    });

    // getting color
    get_meta( result, 'color', function( result ){
        new_data = result;
    });
});

数据库架构

posts
ID
title
date
type


metas
id 
meta_key
meta_value
4

1 回答 1

1

要将特定元键添加到主表上的查询,您可以使用相关子查询来查找值:

SELECT ID,
       title,
       date,
       (SELECT meta_value
        FROM metas
        WHERE id       = posts.id
          AND meta_key = 'price'
       ) AS price,
       (SELECT meta_value
        FROM metas
        WHERE id       = posts.id
          AND meta_key = 'color'
       ) AS color
FROM posts;
于 2017-09-13T07:15:32.527 回答