我无法用这个脚本解决我未经处理的承诺拒绝。承诺和异步功能对我来说都是新的。 我应该处理拒绝,但不知道它是如何工作的。
有人可以帮助我吗?
#include <stdio.h>
void copy1( char * const s1, const char * const s2 ); /* prototype */
void copy2( char *s1, const char *s2 ); /* prototype */
int main( void )
{
char string1[ 10 ]; /* create array string1 */
char *string2 = "Hello"; /* create a pointer to a string */
char string3[ 10 ]; /* create array string3 */
char string4[] = "Good Bye"; /* create a pointer to a string */
答案 0 :(得分:0)
异步功能的结果在你的当时。像这样调用rawRequest函数(不要做响应= rawRequest()):
//script
rawRequest(url, headers, params, timeout).then(res => {
//do something with your response
console.log(res);
}).catch(e => {
//handle exception (rejection)
console.log(e);
})
希望这有帮助!!!