mongodb regex searching issue in meteor -


मेरा कोड है

  var search_element = सत्र .get ("search_string"); Var एडीसी = "/" + खोज_लेमेंट + "* /"; console.log (एडीसी); वापसी Polls_Coll.find ({प्रश्न: {$ regex: adc}});   

}

यह काम कर रहा है और अगर मैं मूल्य (खोज_एलिमेंट) के साथ regex का स्थान लेता है, तो यह काम नहीं कर रहा है। मुझे लगता है कि यह इस तरह की जगह है

Polls_Coll.find ({प्रश्न: {$ regex: "/ बेस्ट * /"}}) (उद्धरण "/ बेस्ट * /") के साथ

क्या यह मुख्य समस्या है? या क्या कोई मूर्खतापूर्ण गलती है I ??

दो प्रकार के वाक्यविन्यास हैं:

  Polls_Coll.find ({सवाल: / बेस्ट * /});   

और

  Polls_Coll.find ({प्रश्न: {$ regex: "बेस्ट *"}});   

आपने प्रत्येक में तत्वों का उपयोग किया है, इसलिए संभवतः वह काम क्यों नहीं कर रहा है इसके बारे में थोड़ा अधिक विवरण mongodb डॉक्स पर है:

दोनों रूप उल्काओं में ठीक काम करते हैं, इसलिए आपको उनके साथ कोई समस्या नहीं होनी चाहिए।

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -