在MySQL Loopback Connector上执行原始查询

时间:2014-11-18 16:36:23

标签: mysql node.js loopbackjs strongloop

如何通过带有strongloop的REST API执行原始查询和公开结果?

我已经阅读了有关使用hooksdataSource.connector.query()的内容,但我找不到任何有效的例子。

2 个答案:

答案 0 :(得分:23)

这是一个基本的例子。如果您有产品型号(/common/models/product.json),请通过添加/common/models/product.js文件来扩展模型:

module.exports = function(Product) {

    Product.byCategory = function (category, cb) {

        var ds = Product.dataSource;
        var sql = "SELECT * FROM products WHERE category=?";

        ds.connector.query(sql, category, function (err, products) {

            if (err) console.error(err);

            cb(err, products);

        });

    };

    Product.remoteMethod(
        'byCategory',
        {
            http: { verb: 'get' },
            description: 'Get list of products by category',
            accepts: { arg: 'category', type: 'string' },
            returns: { arg: 'data', type: ['Product'], root: true }
        }
    );

};

这将创建以下端点示例:GET / Products / byCategory?group = computers

http://docs.strongloop.com/display/public/LB/Executing+native+SQL

答案 1 :(得分:1)

  1. /common/models/model.js
  2. 中公开远程方法
  3. 在远程方法中执行sql查询(通过dataSource.connector.query(sql, cb);