【发布时间】:2020-09-20 16:35:34
【问题描述】:
我正在尝试设计一个 vue.js 应用程序,该应用程序在从套接字接收到“new_state”消息时更新有关游戏状态的数据。套接字是使用 django 通道实现的。
这就是代码的样子:
const ws_scheme = window.location.protocol == "https:" ? "wss" : "ws"
const gameSocket = new WebSocket(
ws_scheme +
'://'
+ window.location.host
+ '/ws/play/'
+ game_id
+ '/'
)
let vue = new Vue({
el: '#app',
data: {
current_turn: 0,
last_turn: -1,
current_card: 0,
last_card: -1,
number_of_stacked_cards: 0,
last_amount_played: 0,
won_by: -1,
my_cards: [],
other_players_data: {},
},
created() {
gameSocket.onmessage = function(e) {
data = JSON.parse(e.data)
this.current_turn = data.state.current_turn
this.last_turn = data.state.last_turn
// ... update the other data
};
},
});
当我收到消息时,记录数据表明我收到了正确的信息。但是,如果我在收到消息后输入vue.current_turn,它仍然是0,而不是新值; data 对象的所有其他成员都相同。
我尝试使用vue.current_turn = data.state.current_turn,它确实以这种方式工作,但显然它应该与this 一起工作。
我的代码有什么问题?
一般来说,完成我所追求的最佳方式是什么,即在从套接字接收消息时更新内部数据变量?
我必须不使用 socket.io 库,频道不支持它。
【问题讨论】:
标签: javascript vue.js websocket