where 查询场景,查询不包含某个字符或字符串的数据怎么实现?
where 查询场景,查询不包含某个字符或字符串的数据怎么实现?以下代码是包含的写法,那我要是查询不包含某字符或字符串的数据咋写
db.collection('release_content_col').where({
status_process: 0,
flag_noexpired: true,
title: db.RegExp({
regexp: '8',
options: 'i',
})
})