“Błąd rzutów typucript” Kod odpowiedzi

Błąd rzucania JS

throw new Error('Whoops!')
gaz_edge

Błąd rzutów węzła JS

FactoryController.prototype.create = function (callback) {
    //The throw is working, and the exception is returned.
    throw new Error('An error occurred'); //outside callback 
    try {
        this.check(function (check_result) {
            callback(check_result);
        });
    } catch (ex) {
        throw new Error(ex.toString());
    }
}

FactoryController.prototype.create = function (callback) {
    try {
        this.check(function (check_result) {
            //The throw is not working on this case to return the exception to the caller(parent)
            throw new Error('An error occurred'); //inside callback 
        });
    } catch (ex) {
        throw new Error(ex.toString());
    }
}
Helpless Hoopoe

Błąd rzutów typucript

throw new Error('Something bad occured');
Clever Cowfish

Rzuć błąd w TypeScript

// Throw generic Error
throw new Error("This is the error message");

// Throw more specific error types
throw new EvalError()
throw new RangeError()
throw new ReferenceError()
throw new SyntaxError()
throw new TypeError()
throw new URIError()
throw new AggregateError()
throw new InternaError() // Non-standard: Not for production sites

// Custom Error
class FooBarError extends Error {
	constructor(message: string) {
    	super(message);
    }
    
    ...
}
Tomanator

Rzuć błąd typu paszteprisku

var my_error : Error = new Error("Task failed successfully!");
throw my_error;
Uptight Unicorn

Odpowiedzi podobne do “Błąd rzutów typucript”

Pytania podobne do “Błąd rzutów typucript”

Więcej pokrewnych odpowiedzi na “Błąd rzutów typucript” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu