【发布时间】:2021-05-16 04:57:57
【问题描述】:
每当响应出现在使用 redux-saga 的实时套接字上时,我都会尝试调度一个动作。 我已经能够到达应该放置(调度)动作的代码行,但只有在这种活动套接字情况下,活动动作才不会调度。
这是我的代码:
export function* watchEditorAcceptInvitatioRequest(action) {
yield takeEvery(START_EDITOR_ACCEPT_INVITATION_SOCKET, edditorAcceptInvitationSocket)
}
export function* edditorAcceptInvitationSocket(action) {
const {token, user_id} = action.payload
const subscription = SocketIo.subscribe(token, '/broadcasting/authTest')
yield put(listenEditorAcceptInvitationSocket())
let result = yield call(SocketIo.listen, subscription, `new-test-channel.${user_id}`,
'.new-test-test', (response) => edditorAcceptInvitationReceived({
func: receiveEditorAcceptInvitationSocket,
response: response
}))
}
export function* edditorAcceptInvitationReceived(action) {
while(true) {
console.log(action.response) // I am seeing this in response but the action put in blow line
yield put(action.func(action.response))
}
}
下面是socket订阅和监听代码:
import Echo from 'laravel-echo'
import Socketio from 'socket.io-client'
const BASE_URL = 'https://www.my domain.com'
const PORT = 1111
const subscribe = (token, authEndpoint) => new Echo({
broadcaster: 'socket.io',
host: `${BASE_URL}:${PORT}`,
client: Socketio,
authEndpoint: authEndpoint,
auth: {
headers: {
Authorization: 'Bearer ' + token,
Accept: 'application/json',
},
},
})
const listen = (echo, channel, event, callback) => {
echo.private(channel).listen(event, e => {
const generator = callback(e)
generator.next()
})
}
export default {
subscribe,
listen
}
这里缺少什么,任何帮助将不胜感激。
【问题讨论】:
标签: reactjs redux socket.io redux-saga laravel-echo