具体需要怎么做,能给出一些例子吗?
云函数目录右键在终端打开
npm install xx库
例如
npm install request-promise
const rp = require(‘request-promise’)
exports.main = async (event, context) => {
rp。。。。
}
非常感谢!