我的工厂连接到蓝牙插件来读取数据。读取将持续进行,直到我发送取消订阅命令。在工厂中,我可以看到数据正在连续读取,但数据不会被发送回控制器。如何将数据发送回控制器?
我的工厂:
angular.module('startup.services', []).factory('bluetoothFactory', ['$q', '$window', function($q, $window) {
...
return {
subscribe: function (delimiter) {
var q = $q.defer();
$window.bluetoothSerial.subscribe(delimiter, function (data) {
q.notify(data);
return data;
}, function (error) {
q.reject(error);
});
return q.promise;
}
....
我的控制器:
angular.module('startup.controllers',[]).controller('bluetoothCtrl', function($scope, $ionicModal, $timeout, bluetoothFactory)
{
.....
$scope.readInventory = function(zone)
{
bluetoothFactory.subscribe('\n').then(function(data)
{
$scope.info = data;
},
function(data)
{
// callback
console.log(data);
},
function(error)
{
$scope.error = error;
});
};
答案 0 :(得分:0)
您有几种选择。您可以将工厂的实例传递给工厂,并让它在工厂内更新范围,或者这是我主张在工厂中使用$ broadcast并在控制器中使用$ watch的情况。