对于使用Docker在其计算机上未安装Python环境的客户端,将Windows文件夹中的以下简单models/user
脚本转换为
const M_Bank = require('../models/user');
exports.getTest = function(req,res){
return M_Bank
.findAll()
.then(M_Bank => res.status(200).send(M_Bank))
.catch((error) => {
console.log(error.toString());
res.status(400).send(error)
});
exports.index = function (request, response, next) {
response.json((M_Bank.findAll()));
};
};
文件的最佳方法是什么?
hello_world.py
我想要这个特定的用例,因为我想使用Gitlab和Docker for PyQt5设置CI / CD部署