刚开始地址栏为 localhost:3000 当点击: hello 我想通过Ajax返回数据放入div中,然后地址栏用pushState 改为 localhost:3000/hello。 后端相关的代码为: app.get('/hello’,function(req, res){ res.send(‘hello world’); }); 但是当我在这个修改后的页面刷新的时候如何避免出现Ajax返回的源数据? 或者正确的思路是什么?
作者
作者其它话题
无