摘要: 1、Request cannot be executed; I/O reactor status: STOPPED 2、max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144 阅读全文
posted @ 2021-10-22 18:10 谷粒-笔记 阅读(5958) 评论(0) 推荐(0)
摘要: 函数声明: function foo() {},函数声明会被引擎提升匿名函数:function () {}; 函数表达式:var fun = function () {}; 要在函数体后面加括号就能立即调用,则这个函数必须是函数表达式,不能是函数声明 foo();// 因为函数声明提升,不会报错 f 阅读全文
posted @ 2021-10-22 15:02 谷粒-笔记 阅读(49) 评论(0) 推荐(0)