How do i set my devices
property to the data returned from /store.aspx/GetDevices
. Using this.devices
isn't working.
var app = angular.module("storeApp", []);
app.controller("storeController", ['$http', function ($http) {
this.devices = hardcodeddevices;
$http.post("/store.aspx/GetDevices", {})
.success(function (data) {
//this.devices = JSON.parse(data.d);
});
}]);
var hardcodeddevices = [...