Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据表,其中包含几个列,如姓名、电子邮件、电话等。但是来自服务器端的数据来自 mongo,一些用户不打电话,所以响应 JSON 不包含电话字段。
Datatables 似乎不能处理这样的情况?除了手动创建空字段还有其他方法吗?
如果字段不存在,则将字段添加到集合中,如下所示:
> db.myCollection.update({"phone":{$exists:false}},{$set:{"phone":""}},false,true);