14.4 跨域 - hash(比较恶心 不用)

Posted zouxinping

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了14.4 跨域 - hash(比较恶心 不用)相关的知识,希望对你有一定的参考价值。

前端

a.html

<!--
a和b同域,和c跨域
路径后面的hash值可以用来通信
目的:a想访问c
a给c传一个hash值 c收到hash值后 c把hash值传递给b b将结果放到a的hash值中
-->
<iframe src="http://localhost:4000/c.html#iloveyou"></iframe>
<script>
    window.onhashchange = () => {
      console.log(location.hash)
    }
</script>

b.html

<script>
    // window.parent是c window.parent.parent是a
    window.parent.parent.location.hash = location.hash
</script>

c.html

<script>
    console.log(location.hash)
    const iframe = document.createElement(iframe)
    iframe.src = http://localhost:3000/b.html#idontloveyou
    document.body.appendChild(iframe)
</script>

 

后端

a.js

let express = require(express)
let app  = express()
app.use(express.static(__dirname))
app.listen(3000)

b.js

let express = require(express)
let app  = express()
app.use(express.static(__dirname))
app.listen(4000)

 

以上是关于14.4 跨域 - hash(比较恶心 不用)的主要内容,如果未能解决你的问题,请参考以下文章

JSONP的跨域

PHP后台代码解决跨域问题

[leetcode] 15. 三数之和

jsonp-反向代理-CORS解决JS跨域问题的个人总结

js导出excel

跨域分析以及通解