我有:像这样的代码片段:
Utils.calculate(data).then(
function(data) { alert('success'); },
function(data) { alert('error'); }
);
问题:既没有'seccess'
也没有'error'
被调用。
问: 我应该检查什么?
PS我用jasmine
. 所以它可能是then
回调没有时间运行。所以我决定在测试结束时设置 1 秒超时 - 没有结果。
我有:像这样的代码片段:
Utils.calculate(data).then(
function(data) { alert('success'); },
function(data) { alert('error'); }
);
问题:既没有'seccess'
也没有'error'
被调用。
问: 我应该检查什么?
PS我用jasmine
. 所以它可能是then
回调没有时间运行。所以我决定在测试结束时设置 1 秒超时 - 没有结果。