在JavaScript中读取从Python发送的JSON数据

时间:2019-11-20 13:35:14

标签: javascript json python-3.x flask

我有这个python字典

Messages_by_Room={"Public":[],}

然后我已经使用dumps转换为JSON,因此可以将其发送到模板并在JavaScript中使用

chat_by_room= json.dumps(Messages_by_Room, indent=2)

在JavaScript代码中,我用它来读取它:

function joinRoom(room) 
{
  chat=JSON.stringify(chat_by_room);

        if (chat[room]) {
          document.querySelector('.chat_message').innerHTML=chat[room];
        }
      else { document.querySelector('.chat-message').innerHTML=''; 
           }
        document.querySelector('.chat-text').focus();
}

,但是代码不起作用。谁能帮助我让JSON中的数据显示在我的页面中?

0 个答案:

没有答案