如何使用SignalR进行反应?

时间:2018-04-25 08:01:22

标签: reactjs paas

如何使用SignalR做出反应?我不熟悉反应,你有什么指导方针吗?

我尝试过很多文章,但没有人帮忙。

import React, { Component } from 'react';
import { Link } from 'react-router-dom';
import $ from 'jquery';
import 'signalr';

class Dashboard extends Component {
   constructor(props) {    
   super(props);
   var connection = $.hubConnection('http://[address]:[port]');
   var proxy = connection.createHubProxy('[hubname]');   

    // atempt connection, and handle errors
    connection.start()
    .done(function(){ console.log('Now connected, connection ID=' + connection.id); })
    .fail(function(){ console.log('Could not connect'); });
}

  render() {
    return (...);
  }
}

export default Dashboard;

0 个答案:

没有答案