摘要:
跨域的概念 从一个站点访问一个资源,然后在这个资源当中又去访问另外的一个站点的资源,这个就是跨域。 同源 同源策略是浏览器的一种安全策略,所谓同源是指,域名,协议,端口完全相同。 SONP 跨域 其本质是利用了<script src=""></script>标签具有可跨域的特性,由服务端返回一个预先 阅读全文
摘要:
1.引进路由 import Vue from 'vue' 2.使用路由 Vue.use(Router) 3.路由注册 export default new Router({ routes: [{ path: '/', name: 'Home', component: Home }, { path: 阅读全文
摘要:
1.导入axios import axios from 'axios' 2.直接在组件的 methods 中使用 methods: { getHomeInfo () { axios.get('/api/index.json?city=' + this.city) .then(this.getHome 阅读全文