Podfile错误写法,会报错The dependency `Reveal-iOS-SDK` is not used in any concrete target. platform:ios,'7.0' pod 'Reveal-iOS-SDK', :configurations => ['Debug'] Podfile正确的写法: platform:ios,'7.0' target 'WeiYiTest' dopod 'Reveal-iOS-SDK', :configurations => […
vue-cli3.0使用axios的时候出现错误,记录一下 报错信息: Uncaught TypeError: Cannot set property $axios of #<Vue> which has only a getter at eval (main.js?56d7:12) at Module../src/main.js (app.js:11102) at __webpack_require__ (app.js:724) at fn (app.js:101) at Object.0…
报错 ERROR Failed to compile with 1 errors 10:33:34 ├F10: PM┤ This dependency was not found: * @/views/teacher/save in ./src/router/index.js To install it, you can run: npm install --save @/views/teacher/save 原因 在router/index.js中,路径写错,写对就可以了.…
今天新机装cocopods时,等安装完毕发觉出现[!] The dependency `AFNetworking (~> 3.1.0)` is not used in any concrete target.这个警告.看了下版本: 1.0.1   解决方式: 官网是这样给推荐的: 在创建Podfile的时候,用这种格式使用, platform :ios, '8.0' #use_frameworks!个别需要用到它,比如reactiveCocoa target 'TestPod' do pod '…
当用CocoaPods  pod install 时出现了下面的错误时: p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #c33720 } span.s1 { } [!] The dependency `JSONModel (~> 1.2.0)` is not used in any concrete target. The dependency `MJExtension (~> 3.0.10)` is n…
今天用hibernate的时候,用了一个原生态sql做了一个分页查询,结果就报错了... 找到解决方法了:http://shmily2038.iteye.com/blog/1704963…
'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework:spring-webmvc:jar dependency.(groupId:artifactId:type:classifier)' must be unique:依赖必须是唯一的 duplicate declaration of version :重复申明版本 解决:检查自己的pox.xml中是否重…
错误: Uncaught (in promise) TypeError: **Cannot read property 'protocol' of undefined ... 源码: 完整错误: import axios from 'axios' import VueAxios from 'vue-axios' Vue.use(axios, VueAxios) 修正一:(亲测) import axios from 'axios' import VueAxios from 'vue-axios'…
Springboot 之 启动报错-数据库 springboot项目在启动时,报如下错误: Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 2019-09-09 20:47:28.395 ERROR 16240 --- [ main] o.s.b.d.LoggingFailureAnalysisRepo…
需求及实现 统一捕获接口报错 弹窗提示 报错重定向 基础鉴权 表单序列化 用法及封装 用法 // 服务层 , import默认会找该目录下index.js的文件,这个可能有小伙伴不知道可以去了解npm的引入和es6引入的理论概念 import axiosPlugin from "./server"; Vue.use(axiosPlugin); 对axios的封装(AXIOS:index.js) import axios from "axios"; import qs…