Elixir Pheonix Channels (FunctionClauseError) нет совпадений с функциональными предложениями в ProjectName.ModuleName.handle_in / 3 - PullRequest
0 голосов
/ 15 марта 2019

При подключении к каналам Elixir через Typescript, я получаю эту ошибку

(FunctionClauseError) нет совпадений с функциональными предложениями в ProjectName.ModuleName.handle_in/3

  1. Почемувозникает ошибка?
  2. Как я могу ее исправить?

Вот мой код.

машинопись chatView.tsx

import React, { Component } from 'react'
import { Socket} from 'phoenix'

type MyProps = {  };
type MyState = { message: string  };

export class Chat extends Component <MyProps, MyState> {

    static readonly sockets = new Socket("ws://127.0.0.1:4000/socket");
    static channel = Chat.sockets.channel("groups_forums:lobby", {})

    constructor(props: any) {
        super(props);

        Chat.sockets.connect()

        //bind
        this.handleChange = this.handleChange.bind(this);
        this.handleClick = this.handleClick.bind(this);
        this.handleLoad = this.handleLoad.bind(this);
        this.keyPress = this.keyPress.bind(this);

    }


    componentDidMount() {
        window.addEventListener('load', this.handleLoad);
    }

    handleLoad() {
        console.log("component loaded");

        Chat.channel.join()
            .receive("ok", (resp: any) => { console.log("Joined successfully", resp) })
            .receive("error", (resp: any) => { console.log("Unable to join", resp) })
            .receive("ignore", (resp: any) => {console.log("auth error", resp)})

        Chat.channel.onClose((close: any) => { console.log("closing bye  ", close) });


       Chat.channel.on("new:msg", msg => {
            scrollTo(0, document.body.scrollHeight)
          })

    }


    handleChange(e:any) {
        this.setState({ message: e.target.value });
   }

    keyPress(e:any){
        if (e.keyCode == 13) {
         Chat.channel.push("new:msg",{message: this.state.message},2000)   
        }
      }

    handleClick(e: any) {
        e.preventDefault();
       Chat.channel.push("new:msg", {message: this.state.message})
    }


    render() {
        return (
            <div style={{ position: "absolute", bottom: 0 }}>
                <form>
                    <p className="form-group row">
                        <input style={{ marginLeft: 20, width: 200 }} defaultValue={''} onKeyPress={this.keyPress} onChange={ this.handleChange } id="message" type="text"></input>

                        <input style={{ marginLeft: 20, marginRight: 20 }} type="button" value="send" id="button" onClick={this.handleClick}></input>
                    </p>
                </form>
            </div>
        )
    }
}

export default Chat

эликсир phoenix user_socket.ex

channel "groups_forums:lobby", ChatSample.GroupsForumsChannel

Модуль ChatSample.GroupsForumsChannel в groups_forums_channel.ex является автоматически генерируемым шаблоном по умолчанию.

Краткое описание задачи, которую я хочу выполнить, заключается в том, что сообщение пользователя должно передаваться всем участникам, подключенным к каналу.

1 Ответ

1 голос
/ 16 марта 2019

Ошибка была в моем коде эликсира, group_forums_channel.ex я должен был включить этот код для обработки входящего сообщения

  def handle_in("new_msg", %{"body" => body}, socket) do
    broadcast socket, "new_msg", %{body: body}
    {:noreply, socket}
  end

...