如何在mongoDB查询中使用不存在,不是空,不一样。我试过下面的查询
db.getCollection('result').find({ 'sTax': { $exists: true, $ne: '', $not:/<p/ } })
和
db.getCollection('result').find({ $and: [{ 'sTax': { $ne: '' }}, { 'sTax': { $not: /<p/ }}, { 'sTax': { $exists: true, }}, ]})
但两者都不起作用
什么是正确的查询?
答案 0 :(得分:-1)
我更愿意使用它来回到上一页
<input action="someaction" type="button" value="BackKey" onclick="history.go(-1);"/>
如果您想通过链接使用
<script>
function goBack(){
if(history.length === 1){
window.location = "someurl" //If thats the first page
} else {
history.back();
}
}
</script>
<a href="#" onClick="goBack()">click here</a>