本文介绍了什么是“太多的位置选项"?什么意思做mongoexport?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
mongoexport -h db.mysite.com -u myUser -p myPass -c myCollection
但是我得到的答复是:
ERROR: too many positional options
那是什么?
推荐答案
我遇到了同样的问题.就我而言,我使用的是mongoexport
和--query
选项,该选项需要一个JSON文档,例如:
I had this same problem. In my case, I was using mongoexport
with the --query
option, which expects a JSON document, such as:
mongoexport ... --query {field: 'value'} ...
我需要在文档两边加上引号:
I needed to surround the document with quotes:
mongoexport ... --query "{field: 'value'}" ...
这篇关于什么是“太多的位置选项"?什么意思做mongoexport?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!