不存在,不是空的,不像查询中那样

时间:2014-09-10 05:09:00

标签: mongodb

如何在mongoDB查询中使用不存在,不是空,不一样。我试过下面的查询

db.getCollection('result').find({ 'sTax': { $exists: true, $ne: '', $not:/<p/ } })

db.getCollection('result').find({ $and: [{ 'sTax': { $ne: '' }}, { 'sTax': { $not: /<p/ }}, { 'sTax': { $exists: true, }}, ]})

但两者都不起作用

什么是正确的查询?

1 个答案:

答案 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>