Đây là một ví dụ cơ bản. Nếu bạn có Mô hình sản phẩm (/common/models/product.json), hãy mở rộng mô hình bằng cách thêm tệp /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 }
}
);
};
Điều này sẽ tạo ra ví dụ điểm cuối sau:GET / Products / byCategory? Group =computer
http://docs.strongloop.com/display/public/LB / Thực thi + gốc + SQL