我正在尝试使用AdonisJs找到一种执行搜索查询的方法,但我找不到任何方法来使用Lucid ORM ...
我目前正在使用此功能,但显然不是制作搜索查询的正确方法:
cwd
如何使用adonis.js框架直接执行postgres SQL查询?
let posts = yield Post.query().with('category').where({
title: request.input('term')
}).forPage(1, 10).fetch()
答案 0 :(得分:2)
找到了使用Database.schema.raw(execute queries here)
在Adonis中直接执行SQL查询的解决方案,所以:
const postQuery = yield Database.schema.raw('SELECT * FROM posts');
const posts = postQuery.rows
console.log(posts);
编辑1
使用Lucid ORM执行搜索查询:
const term = request.input('term');
yield Database.select('*').from('posts').where('title', 'LIKE', '%'+term+'%')
console.log(posts);
编辑2
更好的原始查询:
yield Database.select('*').from('posts').whereRaw('title @@ :term OR description @@ :term', {term: '%'+term+'%'})
答案 1 :(得分:0)
假设您有一个名为Post的模型。您可以使用以下查询。
const term = request.input('term');
const posts = await Post.query().where('title', 'LIKE', '%'+term+'%').fetch()
console.log(posts);
如果要选择所有属性,则无需使用 select() 希望对您有帮助。