温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

mongo操作 insert / findOne remove update 返回的值判断

发布时间:2020-07-20 13:45:46 来源:网络 阅读:2163 作者:zhaozhangxiao 栏目:开发技术

插入操作 查看返回值

// $result = $mongoObj->insert($data);  //insert插入成功返回结果array(6) { ["connectionId"]=> int(36862) ["n"]=> int(0) ["syncMillis"]=> int(0) ["writtenTo"]=> NULL ["err"]=> NULL ["ok"]=> float(1) } 

1:更新成功后,返回array(7) { ["connectionId"]=> int(36864) ["updatedExisting"]=> bool(true) ["n"]=> int(1) ["syncMillis"]=> int(0) ["writtenTo"]=> NULL ["err"]=> NULL ["ok"]=> float(1) }

//2:失败后array(7) { ["connectionId"]=> int(36864) ["updatedExisting"]=> bool(false) ["n"]=> int(0) ["syncMillis"]=> int(0) ["writtenTo"]=> NULL ["err"]=> NULL ["ok"]=> float(1) }

//1:删除成功操作后,返回的结果 array(6) { ["connectionId"]=> int(36865) ["n"]=> int(1) ["syncMillis"]=> int(0) ["writtenTo"]=> NULL ["err"]=> NULL ["ok"]=> float(1) } 

//2:删除失败后,返回的结果     array(6) { ["connectionId"]=> int(36865) ["n"]=> int(0) ["syncMillis"]=> int(0) ["writtenTo"]=> NULL ["err"]=> NULL ["ok"]=> float(1) }  

//返回取出的值

//array(4) { ["_id"]=> object(MongoId)#7 (1) { ["$id"]=> string(24) "58a3ed5a6e0ef78c27000030" } ["name"]=> string(9) "zhangxiao" ["age"]=> string(2) "19" ["sex"]=> string(3) "nan" }


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI