如何将库添加到浏览器控制台?

时间:2016-03-01 04:10:20

标签: browser mongoose console

我可以将任何库(例如mongoose)添加到我的浏览器控制台(即使它是临时的并且在刷新时完成)。这样我就可以从浏览器控制台访问它的功能了。任何插件也很受欢迎。

1 个答案:

答案 0 :(得分:0)

您可以在通过

从浏览器控制台加载的页面中添加脚本标记
document.head.innerHTML+="<script src='https://raw.githubusercontent.com/Automattic/mongoose/master/bin/mongoose.js'></script>";

对于更原生的方式,

var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://raw.githubusercontent.com/Automattic/mongoose/master/bin/mongoose.js'; // url of the mongoose.js
document.head.appendChild(script);

它将在控制台中使用

>> mongoose;
<- Object { Error: MongooseError(), Schema: Schema(), Types: Object, VirtualType: VirtualType(), SchemaType: SchemaType(), utils: Object, Document: Document() }