- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在浏览并尝试熟悉 Promise,我将跳过介绍性概念,并深入了解问题的实质。在 NodeJS 中,使用库 BlueBird 。我不想推迟函数调用,我也不想过多地污染代码,即使这是熟悉前提的介绍性编码,因为当尝试更高级的概念时,我会得到迷失在他们身上。我尝试将“asyn/await”与 try block 一起使用,但上帝是代码困惑,并且不起作用......或多或少的指导方针:
Promise 包含内置的 catch 机制,如果处理标准的单个 Promise,该机制可以完美地工作。
// Try/Catch style Promises
funcTwo = function(activate) {
return new Promise(function(resolve, reject) {
var tmpFuncTwo;
if (activate === true) {
tmpFuncTwo = "I'm successful"
resolve(tmpFuncTwo)
} else if (activate === false) {
tmpFuncTwo = "I'm a failure.";
reject(tmpFuncTwo)
} else {
tmpFuncTwo = "Oh this is not good."
throw new Error(tmpFuncTwo);
}
});
}
funcTwo(true)
.then(val => {
console.log("1: ", val)
return funcTwo()
})
.catch(e => {
console.log("2: Err ", e.message)
})
让我有些困惑的是试图坚持与 Promise.all 相同的前提,错误没有被处理,因为抛出直接推送到主 Controller 。从此代码段引发的异常永远不会进入 Catch block 。
funcThree = function(val) {
return new Promise(function(resolve, reject) {
if (val > 0)
resolve((val + 1) * 5)
else if (val < 0)
reject(val * 2)
else
throw new Error("No work for 0");
})
}
// Output in Dev Console
/*
Extrending to the catch block handling, This will fail, the exception is thrown, and ignores the catch block. Terminating the program.
*/
Promise.all([funcThree(1), funcThree(0), funcThree(-3)])
.then(function(arr) {
for (var ind = 0; ind < arr.length; ind++) {
console.log(arr)
};
}, function(arr) {
console.log(arr)
})
.catch(function(e) {
console.log("Error")
})
我尝试了一种简单的解决方法,但我对这门语言有点陌生,并且不确定这是否遵循“最佳实践”,因为它们是从 Python 指南中灌输到我的脑海中的。
// Promise all, exceptionHandling
funcThree = (val) => {
return new Promise(function(resolve, reject) {
if (val > 0)
resolve((val + 1) * 5)
else if (val < 0)
reject(val * 2)
else {
var tmp = new Error("No work for 0");
tmp.type = 'CustomError';
reject(tmp);
}
})
}
/*
This works, and doesn't cause any type of mixup
*/
Promise.all([funcThree(1), funcThree(0), funcThree(-3)])
.then(
arr => {
for (var ind = 0; ind < arr.length; ind++) {
console.log(arr)
};
}, rej => {
if (rej.type == 'CustomError')
throw rej;
console.log(arr)
})
.catch(e => {
console.log("Catching Internal ", e.message)
})
这是使用 Native Promise 库以及 bluebird
有没有一种方法可以更本地化地处理这个问题,
关于jfriend00的评论。我的意思是说,我不希望异常由 try-catch block 之外的任何东西处理。当我尝试使用与正常 promise 相同的格式时,一切都完美对齐,并且我的捕获得到确认,错误得到处理。由于 Promise.all 只能解析/拒绝,我认为没有一种干净的方法来委托(delegate)第二个代码片段中第二次调用 funcTwo 引发的异常。或多或少我不确定我所做的解决方法是否是一个好的解决方案,或者是否会导致一些深层问题随着代码的扩展。
最佳答案
Since Promise.all can only ever resolve/reject I don't think that there is a clean way of delegating the exception that is thrown from the second call to funcTwo in the second code snippet.
在您的这个代码块中:
// Try/Catch style Promises
funcTwo = function(activate) {
return new Promise(function(resolve, reject) {
var tmpFuncTwo;
if (activate === true) {
tmpFuncTwo = "I'm successful"
resolve(tmpFuncTwo)
} else if (activate === false) {
tmpFuncTwo = "I'm a failure.";
reject(tmpFuncTwo)
} else {
tmpFuncTwo = "Oh this is not good."
throw new Error(tmpFuncTwo);
}
});
}
throw
和 reject()
之间没有区别。 throw
被 Promise 构造函数捕获并转换为 reject()
。就我个人而言,我更喜欢在这种情况下仅使用 reject()
,因为我认为函数调用比异常要快一些。
我不知道这是否已编入规范,但通常认为使用 Error 对象拒绝是一个好主意。所以,我会像这样编写代码:
function funcTwo(activate) {
return new Promise(function(resolve, reject) {
if (activate === true) {
resolve("I'm successful");
} else {
let errMsg = activate === false ? "I'm a failure." : "Oh this is not good.";
reject(new Error(errMsg));
}
});
}
Promise 要么解决,要么拒绝。没有与拒绝不同的第三种错误情况。异常(exception)只会变成拒绝。因此,如果您要返回三种状态(如上面的代码),那么您必须决定如何将这三种状态放入 resolve
和 reject
。
由于这只是示例代码,因此这里没有具体的建议。如果 activate === false
实际上不是一个错误,只是一种不同类型的完成,不应该中止 Promise.all()
中的其他 promise ,那么你' d 希望该情况为 resolve()
,而不是 reject()
。但是,没有硬性规定什么是什么 - 它实际上只取决于您希望调用者的行为变得自然和简单,因此它会因情况而异。
此外,如果您不控制这里的 funcTwo
中的代码,那么您可以在传递之前在其上放置一个 .catch()
处理程序它到 Promise.all()
并且您可以将特定的拒绝转换为解决方案(如果您希望 Promise.all()
逻辑以这种方式工作)。 promise 链,以便您可以在将它们传递到更高级别的操作之前修改它们的输出。它类似于在较低级别使用 try/catch 来捕获异常并处理它,因此较高级别的代码不必看到它(有时是适当的)。
More or less I'm not sure if what I've done as a workaround," reject, check if reject passed forward an error, and then throw it if it did", is a good solution or if it will cause some deep problem as code expands.
在您的 Promise.all()
代码中:
/*
This works, and doesn't cause any type of mixup
*/
Promise.all([funcThree(1), funcThree(0), funcThree(-3)]).then(arr => {
for (var ind = 0; ind < arr.length; ind++) {
console.log(arr[index]);
}
}, rej => {
if (rej.type == 'CustomError')
throw rej;
console.log(arr)
}).catch(e => {
console.log("Catching Internal ", e.message)
})
您的第一个拒绝处理程序并没有真正帮助您。它不会做任何您在一个 .catch()
处理程序中无法完成的事情。让我重复一遍。 Promise 仅有两个结果 reject
和 resolve
。异常(exception)情况没有第三种结果。 Promise 回调中发生的异常只会变成拒绝。因此,您上面的代码可以更改为:
/*
This works, and doesn't cause any type of mixup
*/
Promise.all([funcThree(1), funcThree(0), funcThree(-3)]).then(arr => {
for (var ind = 0; ind < arr.length; ind++) {
console.log(arr)
};
}).catch(e => {
// there is no value for arr here, no result - only a reject reason
console.log("Catching Internal ", e.message)
if (rej.type === "CustomError") {
// do something special for this type of error
}
// unless you rethrow here, this rejection will be considered handled
// and any further chained `.then()` will see the promise as resolved
// but since there is no return value, the promise will be resolved
// with an undefined result
});
如果您想尽早捕获 funcThree()
中的拒绝,以便仍可以跟踪 Promise.all()
中的其余 Promise,并且仍然得到他们的结果,那么你可以得到一个 Promise.settle()
实现,它将遵循所有的 promise 来得出结论,无论有多少拒绝,或者你可以编写自己的特殊情况:
function funcFour(val) {
return funcThree(val).catch(err => {
// catch and examine the error here
if (err.type === "CustomError") {
// allow things to continue on here for this specific error
// and substitute null for the value. The caller will have
// to see null as a meaningful result value and separate from
// a non-null result
return null;
} else {
// Not an error we recognize, stop further processing
// by letting this promise reject
throw err;
}
});
}
Promise.all([funcFour(1), funcFour(0), funcFour(-3)]).then(arr => {
// got results, some might be null
console.log(arr);
}).catch(err => {
// got some error that made it so we couldn't continue
console.log(err);
});
<小时/>
我知道这都是风格观点,但是使用 Promise 的良好代码的好处之一是,您不再需要深缩进的代码,现在我看到人们添加了各种额外的缩进和根本不需要的行,并且似乎消除了干净 promise 编码的一些好处。
在这种情况下,.then()
和 .catch()
可以与它们遵循的 Promise 位于同一行。而且,无需在新行上开始内联函数定义。
关于javascript - Promise.all 与 try/catch 模拟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42739883/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!