我收到此错误
TypeError:self.rooms [setup.to] .publish不是函数
发送邮件时。我已经拥有pubnub中的密钥,我该怎么做才能使它工作?我的Angular版本是1.6.6。
// Send Messages
$scope.send = function() {
Messages.send({
data: $scope.textbox
});
};
答案 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
}
}