سؤال

I have a knockout observable and I'm trying to run a function when it is not undefined, but I keep getting the error below. Here is my view model:

View Model:

self.prevLayer = ko.observable();

if (typeof self.prevLayer() !== "undefined") {
   DoStuff();
}

Here is my error:

Message: undefined is not a function

هل كانت مفيدة؟

المحلول

Are you checking to see if it is undefined outside of your view model?

If so, you will need to move it inside the view model, the variable only exists inside your view model.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top