node·常用命令
node 运行命令 node xx.jssxx.jss
npm run serve
Node:
npm init -y
npm install mysql
npm install express –save //项目下载入模块
◼️res.send() 参数为: a Buffer object / a String / an object / an Array
◼️ res.json() 参数为:任何JSON类型
◼️ res.end() 参数为: a Buffer object / a String
使用res.send,red.json,此时可以不写res.end
载入mysql 模块: npm i mysql
暴露js属性 export default { xxx }
482 Views