本文介绍了如何在Bookshelf.js中进行原始查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想实现这一目标
SELECT id, ( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) * sin( radians( lat ) ) ) ) AS distance FROM markers HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;
来自 https://developers.google.com/maps/article/phpsqlsearch_v3?hl = fr#createtable
如何使用书架进行此查询.
How can I make this query with Bookshelf.
我现在有这个:
var raw = '( 3959 * acos( cos( radians(37) ) * cos( radians( '+ req.params.lat + ' ) ) * cos( radians( '+req.params.lng+' ) - radians(-122) ) + sin( radians(37) ) * sin( radians( '+req.body.lng+' ) ) ) ) AS distance';
new Places().query(function(qb) {
qb.where('lat',req.params.lat);
qb.where('lng',req.params.lng);
qb.column(raw);
qb.having('distance', '>', 25);
}).fetch({ debug: false }).then(function(collection) {
console.log(collection);
if (collection === undefined) {
// no such result
res.json(404,{error: "No Places found."});
} else {
// found, list json
res.json(200, collection);
}
});
推荐答案
它.
qb.column(qb.knex.raw(raw));
这篇关于如何在Bookshelf.js中进行原始查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!