栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

firebase查询方法startAt()采用区分大小写的参数

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

firebase查询方法startAt()采用区分大小写的参数

Firebase当前不支持小写搜索。处理此问题的最佳方法是将小写字符串与原始字符串一起存储,然后查询小写字符串。

var ref_restMenu = firebase.database().ref()    .child('Restaurants')    .child('Company')    .child('menu');var item = "Apple Pie";// Or however you store dataref.push({    itemName: item,    itemNameLower: item.toLowerCase(),    ...})

然后您可以这样查询:

//Check if item is already exist!// query itemNameLoweruse and .toLowerCase()ref_restMenu.orderByChild("itemNameLower").startAt(itemName.toLowerCase()).once("value", function(snapshot) {    var data = snapshot.val();     if(data !== null) {        //We will ger item name and restaurant id from this data.        callback(data);    } else {        //Item not found in globalMenu        console.log("%c Item not found in Global Menu", "color: red");    }});

这确实需要复制数据,但是到目前为止,还没有一个更容易预见的选项。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/464723.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号