如何使用电话号码作为搜索关键字来查找对象

时间:2017-02-08 05:20:44

标签: javascript node.js mongoose

嗨这是我在数据库中的一个对象,现在我需要找到基于手机号码的对象。我怎么能用mongoose和nodejs做到这一点?请帮帮我

    Father :{
      Firstname:{
                type:String,
                required:true
              },
      Lastname:{
                type:String,
                required:true
                },
      Occupation:{
                  type:String,
                  required:true
                },
      PlaceOfWork:{
                   type:String,
                   required:true
                  },
      OfficialAddress:{
                      type:String,
                      required:true
                    },
      EmailId:{
                type:String,
                required:true
              },
      PhoneNo:{
                type:Number,
                required:true
              }};

1 个答案:

答案 0 :(得分:0)

您可以使用phoneNo轻松找到数据。

")