2

我正在使用nodegit创建一个基于 git 提交的自定义 CHANGELOG 生成器(我不太喜欢现有的类似项目,至少在理论上它是一个非常简单的工具)。

console.log我现在的问题是,当它位于第二层承诺时,我似乎无法显示任何输出。

此代码显示第一个console.log条目,但第二个条目消失在网络空间中。它没有显示任何错误或任何东西,只是没有出现在控制台中。

git.Repository.open(repo_root).then(function (repo_handle) {
  repo_handle.Tag.list(repo_handle).then(function (tag_list) {
    console.log("THIS SHOWS"); // <--- Shows
    repo_handle.getTagByName(tag_list[0]).then(function (tag) {
      console.log("THIS DOES NOT"); // <--- Doesn't show
    });
  });
});

只是为了验证问题不在getTagByName函数中,下面的代码可以正常工作并输出THIS SHOWS,所以它与将日志记录函数放在承诺的第二层有关。

git.Repository.open(repo_root).then(function (repo_handle) {
  repo_handle.getTagByName('v0.0.1').then(function (tag) {
    console.log("THIS SHOWS");
  });
});

顺便说一句,我尝试了相同代码的几个不同版本,例如使用return repo_handle.Tag.list(repo_handle)and then(tag_list),但结果是相同的。

据我所知,代码实际上没有任何错误或任何东西,代码似乎工作得很好,因为我没有收到任何错误,但如果console.log不能正常工作,那么它可能就是这种情况它也没有向我显示错误...

4

1 回答 1

2

这可能意味着repo_handle.getTagByName('v0.0.1').then(function (tag) {永远不会开始。尝试这样的事情:

git.Repository.open(repo_root).then(function (repo_handle) {
    repo_handle.Tag.list(repo_handle).then(function (tag_list) {
        console.log("THIS SHOWS"); // <--- Shows
        repo_handle.getTagByName(tag_list[0]).then(function (tag) {
            console.log("THIS DOES NOT"); // <--- Doesn't show
        }).catch(error => {
            console.log("gotcha! ", error);
        });
    });
});

console.log 本身与 promise 嵌套的深度无关

来自提问者的更新

对于那些后来发现这个问题的人来说,实际的问题repo_handle.Tag是未定义的,我发现它是由于catch为错误添加了一个,因此接受了这个答案。

有效的新更新代码如下:

let nodegit = require('nodegit');
let path = require('path');

var repo_root = path.resolve(__dirname, './.git');
let repo = null;

nodegit.Repository.open(repo_root)
  .then(function (repo_handle) {
    repo = repo_handle;
    return nodegit.Tag.list(repo_handle);
  })
  .then(function (tag_list) {
    return repo.getTagByName(tag_list[0]);
  })
  .then(function (tag) {
    console.log(tag.message());
  })
  .catch(function (e) {
    console.error(e);
  });
于 2018-11-22T11:16:26.143 回答