I have the following code, to scan for a Bluetooth device, which for every device found, I want to add the device to an array.
devices: Observable<Array<string>>;
bluetoothAdd() {
this.isScanning = true;
var plusIcon = this.page.getViewById("add");
plusIcon.style.opacity = 0;
var self = this;
bluetooth.hasCoarseLocationPermission().then(
function (granted) {
if (!granted) {
bluetooth.requestCoarseLocationPermission();
} else {
bluetooth.startScanning({
serviceUUIDs: ["133d"],
seconds: 4,
onDiscovered: function (peripheral) {
console.log("Periperhal found with UUID: " + peripheral.UUID);
this.devices.push(peripheral); // <- Problem Line
}
}).then(function () {
console.log("scanning plete");
self.isScanning = false;
plusIcon.style.opacity = 1;
}, function (err) {
console.log("error while scanning: " + err);
});
this.isScanning = false;
}
});
}
However, this code throws the following error:
JavaScript error: file:///app/Pages/Home/homeponent.js:99:37: JS ERROR TypeError: undefined is not an object (evaluating 'this.devices.push')
I am working in Typescript, but I know the push function is a JS thing. Not sure how I would do this in Typescript - what have I done wrong?
I have the following code, to scan for a Bluetooth device, which for every device found, I want to add the device to an array.
devices: Observable<Array<string>>;
bluetoothAdd() {
this.isScanning = true;
var plusIcon = this.page.getViewById("add");
plusIcon.style.opacity = 0;
var self = this;
bluetooth.hasCoarseLocationPermission().then(
function (granted) {
if (!granted) {
bluetooth.requestCoarseLocationPermission();
} else {
bluetooth.startScanning({
serviceUUIDs: ["133d"],
seconds: 4,
onDiscovered: function (peripheral) {
console.log("Periperhal found with UUID: " + peripheral.UUID);
this.devices.push(peripheral); // <- Problem Line
}
}).then(function () {
console.log("scanning plete");
self.isScanning = false;
plusIcon.style.opacity = 1;
}, function (err) {
console.log("error while scanning: " + err);
});
this.isScanning = false;
}
});
}
However, this code throws the following error:
JavaScript error: file:///app/Pages/Home/home.ponent.js:99:37: JS ERROR TypeError: undefined is not an object (evaluating 'this.devices.push')
I am working in Typescript, but I know the push function is a JS thing. Not sure how I would do this in Typescript - what have I done wrong?
Share Improve this question edited Apr 16, 2016 at 17:09 Whit Waldo 5,2174 gold badges53 silver badges74 bronze badges asked Apr 16, 2016 at 16:59 George EdwardsGeorge Edwards 9,22921 gold badges85 silver badges171 bronze badges 1-
1
This has nothing to do with TypeScript.
this
is not what you expect. See stackoverflow./questions/3127429/…. You can useself
though – elclanrs Commented Apr 16, 2016 at 17:01
2 Answers
Reset to default 3It has nothing to do with TypeScript, it's just normal Javascript rules for this.
The problem this points to the function you give to onDiscovered instead of the class.
You can fix it by using the self variable you have defined or by rewriting the code to use arrow functions instead, like this:
devices: Observable<Array<string>>;
bluetoothAdd() {
this.isScanning = true;
var plusIcon = this.page.getViewById("add");
plusIcon.style.opacity = 0;
bluetooth.hasCoarseLocationPermission().then(
(granted) => {
if (!granted) {
bluetooth.requestCoarseLocationPermission();
} else {
bluetooth.startScanning({
serviceUUIDs: ["133d"],
seconds: 4,
onDiscovered: (peripheral) => {
console.log("Periperhal found with UUID: " + peripheral.UUID);
this.devices.push(peripheral); // <- Problem Line
}
}).then(() => {
console.log("scanning plete");
this.isScanning = false;
plusIcon.style.opacity = 1;
}, (err) => {
console.log("error while scanning: " + err);
});
this.isScanning = false;
}
});
}
Also, as Bhabishya pointed out the type of devices is Observable. That type has no push method defined on it. Instead it will be able to emit an array of Devices.
If all you need is an array you should also change the devices to be an array of string, instead of an Observable of array of string.
devices: Array<string>;
You will also have to initialize it.
devices: Array<string> = [];
You have defined devices as Observable of array devices: Observable<Array<string>>
and not an array devices: Array<string>
on which you can call the push() function.