gpt4 book ai didi

javascript - '无法读取未定义的属性 'data'' nodeJS

转载 作者:行者123 更新时间:2023-11-30 00:25:03 25 4
gpt4 key购买 nike

无法读取未定义的 nodeJS 的属性“数据”,我正在尝试使用 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);
});

最佳答案

我认为数据字段未定义,因此是错误。

试试这个,

Client.getInfo(function(err, data) {
if(err) return console.log("The error is:",err);
console.log('Repository url is:', data.url);
});

关于javascript - '无法读取未定义的属性 'data'' nodeJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31744911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com