无法读取未定义的'nodeJS的属性'data',我想尝试使用nodejs提交目录
var SvnLib = require('svnlib');
Client = new SvnLib ({
cwd: './Users/Safa/Desktop/test2',
username: 'username', // optional if authentication not required or is already saved
password: 'password', // optional if authentication not required or is already saved
});
Client.update(function(err, data) {
console.log('updated');
});
Client.getInfo(function(err, data) {
console.log('Repository url is %s', data.url);
});
答案 0 :(得分:1)
我认为数据字段是未定义的,因此是错误。
试试这个,
Client.getInfo(function(err, data) {
if(err) return console.log("The error is:",err);
console.log('Repository url is:', data.url);
});