无法通过在angularjs-chat中测试教程来发送消息

时间:2017-10-13 22:55:18

标签: javascript angularjs web pubnub

我收到此错误

  

TypeError:self.rooms [setup.to] .publish不是函数

发送邮件时。我已经拥有pubnub中的密钥,我该怎么做才能使它工作?我的Angular版本是1.6.6。

// Send Messages
$scope.send = function() {
    Messages.send({
        data: $scope.textbox
    });
};

1 个答案:

答案 0 :(得分:0)

如果您使用表单我不知道,但尝试这种方式:

   <form name="form" novalidate="true" ng-submit="send()">

    $scope.send = function () {
        if ($scope.form.$valid) {
            var data = $scope.textbox;
            $scope.textbox = null;
            $scope.messages.push(data);//of push or send depend did proto
        }
    }