简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
Vue报错笔记(2):No 'Access-Control-Allow-Origin' header is present on the requested resource.
就是说:当使用ajax访问远程服务器时,请求失败,浏览器报如上错误。这是出于安全的考虑,默认禁止跨域访问导致的1. 什么时跨域访问举个栗子:在A网站中,我们希望使用Ajax来获得B网站中的特定内容。如果A网站与B网站不在同一个域中,那么就出现了跨域访问问题。你可以理解为两个域名之间不能跨过域名来发送请求或者请求数据,否则就是不安全的。跨域访问违反了同源策略,同源策略的详细信息可以点击如下链接:
Vue报错笔记(3):[Vue warn]: Failed to resolve directive: mod (found in <ComponentA>)
不能识别指令:mod就是你应该某条指令无意间可能加了空格导致不能解析。我就是把v-model写成v-mod elmodel之间加了个空格
Vue报错笔记(1)vue.js:515 [Vue warn]: Property or method “name“ is not defined on the instance but refere
报错:vue.js:515 [Vue warn]: Property or method "name" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.(found in root instan
git中的origin
origin首先假设你自己在github上创建了一个Repository,叫做myRepository,假设你的Github ID是user1,这个时候指向你的代码库的链接是https://github.com/user1/myRepositoryclone如果你在terminal里输入git clone https://github.com/user1/myR...
到底了