Skip to content
Advertisement

How do I insert HTML into Mongodb?

I keep getting kicked out of the shell when I try to paste in an HTML text file. How can this be done? Do I first need to use some javascript to encode it or something?

Example:

JavaScript

EDIT

I put only single quotes inside my html and wrapped the whole thing in double-quotes, but still no good. shell error:

JavaScript

Advertisement

Answer

You need to remove or encode the control characters in your string.

For example, paste your text in here, and encode to UTF-8 ECMAScript (which means javascript strings).

ps: here an article about strings in javascript. tells you what needs escaping. http://docstore.mik.ua/orelly/webprog/jscript/ch03_02.htm

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement