我正在尝试运行此脚本:
...
.onCreate(async snap => {
const item = snap.val()
const newImageUrl = await asyncFunctionThatMovesImage(item.url1)
const newImageUrl2 = await asyncFunctionThatMovesImage(item.url2)
return snap.ref.update({
img1: newImageUrl,
img2: newImageUrl2
})
})
我不断收到此错误:
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "yourusername",
password: "yourpassword"
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected!");
});
我正在使用Ubuntu 18.04。 有人可以帮忙吗..