码迷,mamicode.com
首页 >  
搜索关键字:cannot resolve symbo    ( 6898个结果
mongodb sort
往常使用options.Find().SetSort(bson.D{{"a", -1},{"b", -1}})结果报错,感觉使用方法没问题,排查之后发现是import的包错了导致。 cannot transform type bson.D to a BSON Document: WriteArray ...
分类:数据库   时间:2021-05-25 18:10:59    阅读次数:0
Nginx 502 Bad Gateway
前言 事实证明,读过Linux内核源码确实有很大的好处,尤其在处理问题的时刻。当你看到报错的那一瞬间,就能把现象/原因/以及解决方案一股脑的在脑中闪现。甚至一些边边角角的现象都能很快的反应过来是为何。笔者读过一些Linux TCP协议栈的源码,就在解决下面这个问题的时候有一种非常流畅的感觉。 Bug ...
分类:其他好文   时间:2021-05-25 17:42:11    阅读次数:0
将url下载到本地
const axios=require('axios') const fs = require('fs-extra'); const https=require('https') const path=require('path') function resolve (dir) { return p ...
分类:Web程序   时间:2021-05-24 17:11:19    阅读次数:0
Promise相关概念
一、关于promise 1. 处理异步操作 2. 是一个构造函数,可实例化 3. 支持链式调用,解决回调地狱问题 二、 promise初使用 const p = new Promise((resolve,reject) => { setTimeout(()=>{ let n = rand(1,100 ...
分类:其他好文   时间:2021-05-24 15:29:20    阅读次数:0
Scala基础
Scala语言类型(同java) 静态,强,类型推断, 弱类型:(javascripte) > "1"+2 '12' 强类型:(java,scala,python) >>> "1"+2 TypeError: cannot concatenate 'str' and 'int' objects 动态类 ...
分类:其他好文   时间:2021-05-24 14:04:24    阅读次数:0
promise
promise.then 如果不加第二个参数则会执行catch方法, 加第二个参数则不会执行catch方法。 var pro=new Promise((resolve,reject)=>{ // resolve(); reject(); }) pro.then(()=>{ console.log(' ...
分类:其他好文   时间:2021-05-24 13:41:41    阅读次数:0
SpringMVC配置
web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc ...
分类:编程语言   时间:2021-05-24 10:40:53    阅读次数:0
component: resolve => require(['@/view/index.vue'], resolve)与component: index
require: 运行时调用,理论上可以运用在代码的任何地方, import:编译时调用,必须放在文件开头 懒加载:component: resolve => require(['@/view/index.vue'], resolve) 用require这种方式引入的时候,会将你的component ...
分类:其他好文   时间:2021-05-24 10:02:52    阅读次数:0
Unable to resolve service for type`***` while attempting to activatre `***`
出现上图那样的情况 一般是没有在Startup类中的ConfigureServices中注入接口和实现类 注入一个就ok ...
分类:其他好文   时间:2021-05-24 09:04:56    阅读次数:0
ERROR总结
1.连接问题 Cannot get a connection, pool error Timeout waiting for idle object 解决: 排查思路: 1.检查是否应用压力过大,无法获取空闲连接 查看cpu、内存 查看tomcat的连接数(netstat -natp | grep ...
分类:其他好文   时间:2021-05-24 05:29:42    阅读次数:0
6898条   上一页 1 ... 3 4 5 6 7 ... 690 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!