【MongoDB】在Mongodb使用shell實現與javascript的動態互動,mongodbshell

來源:互聯網
上載者:User

【MongoDB】在Mongodb使用shell實現與javascript的動態互動,mongodbshell

關於利用mongodb的shell執行指令碼,這點在以前的文章中有點遺漏;現在在此篇部落格中做個補充;

一、在命令列中傳入指令檔

定義一個javasciprt檔案,名稱為:script1.js,內容如下:

print("I am albert shao in the script1.js")

定義另一個javascript檔案,名稱為script2,內容如下:

print("I like to read and study")

在命令視窗運行得到如下結果:


備忘: 指令檔必須放到mongo的同目錄檔案下

如果希望使用指定的主機和連接埠的mongodb上運行指令碼,需要先指定地址然後在跟上指令檔的名稱;

mongo --quiet server-1 :3000/foo script1.js script2.js

二、互動執行js指令碼

三、建立.mongorc.js檔案

如果某些指令碼會被頻繁載入,可以將它們添加到mongor.js檔案中。這個檔案會在啟動shell時候自動運行;

例如我們希望啟動shell顯示一句歡迎語句。我們在使用者的主目錄建立一個名為【.mongorc.js】檔案,向其中添加如下代碼:

var compliment = ["like albert","attractive","intellgient"];var index = Math.floor(Math.random()*3);print("Hello, you're looking particularly " + compliment[index] + "  today!");

預想可能會直接自動載入,檔案目錄:



運行會出現:



如果不在administer目錄 則需要指定,如下一樣:


相關文章:

http://mongoblog.tumblr.com

http://stackoverflow.com/questions/8219891/mongo-shell-simple-example-for-windows-xp

http://www.java123.net/v/954740.html




相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.