码迷,mamicode.com
首页 >  
搜索关键字:reason    ( 800个结果
为Promise添加finally方法支持,把小程序函数变成promise函数
// 为Promise添加finally方法支持 Promise.prototype.finally = function (callback) { let P = this.constructor; return this.then( value => P.resolve(callback()). ...
分类:微信   时间:2020-06-22 12:32:43    阅读次数:107
CentOS 搭建 ElasticSearch 日志集群服务器
之前的文章介绍了在CentOS下如何搭建ElasticSearch日志服务器,但如何搭建日志集群服务器呢,跟之前的步骤一样,只是将 config/elasticsearch.yml 目录下的该文件做出相应的调整,具体调整如下,只做参考: # Elasticsearch Configuration # ...
分类:其他好文   时间:2020-06-17 18:18:48    阅读次数:51
Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.kibana_1][0], [.kibana_task_manager][0]] ...])
1. curl http://192.168.12.128:9200/_cat/health?v 2. http://192.168.1.33:9200/_cat/shards 3. curl -XPUT http://192.168.12.128:9200/_settings?pretty -d ...
分类:其他好文   时间:2020-06-09 09:20:31    阅读次数:266
npm install 错误
npm ERR! code ETIMEDOUT npm ERR! errno ETIMEDOUT npm ERR! network request to https://registry.npmjs.org/hexo-deployer-git failed, reason: connect ETIM ...
分类:其他好文   时间:2020-06-06 22:02:56    阅读次数:121
jasypt-spring-boot提示Failed to bind properties
1问题描述在SpringBoot中使用jasypt-spring-boot进行加密,但是提示:Description:Failedtobindpropertiesunder‘spring.datasource.password‘tojava.lang.String:Reason:Failedtobindpropertiesunder‘spring.datasource.password‘tojav
分类:编程语言   时间:2020-05-31 11:18:26    阅读次数:208
实现一个符合promiseA+规范的promise
export default class Promise2 { state='pending' callbacks = [] resolve(result) { this.excute('fulfilled', result, 0) } reject(reason) { this.excute('r ...
分类:其他好文   时间:2020-05-30 14:17:18    阅读次数:78
postman上一个接口返回的数据作为下一个接口的参数
接口:http://v.juhe.cn/laohuangli/d?key=c3caf502c10862dda503ca84bcbfcd62&date=2020-05-28 //获取响应报文中的json var jsonData = JSON.parse(responseBody); // var d ...
分类:其他好文   时间:2020-05-28 20:05:49    阅读次数:208
手写 Promise
const PENDING = 'pending' const FULFILLED = 'fulfilled' const REJECTED = 'rejected' function MyPromise(executor) { let self = this self.value = null s ...
分类:其他好文   时间:2020-05-16 18:33:45    阅读次数:63
SpringBoot全局异常处理与定制404页面
一、错误处理原理分析 使用SpringBoot创建的web项目中,当我们请求的页面不存在(http状态码为404),或者器发生异常(http状态码一般为500)时,SpringBoot就会给我们返回错误信息。 也就是说,在SpringBoot的web项目中,会自动创建一个/error的错误接口,来返 ...
分类:编程语言   时间:2020-05-11 15:47:39    阅读次数:77
报错 dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.64.dylib Referenced from
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.58.dylib Referenced from: /usr/local/bin/node Reason: image not found dyld: Library... ...
分类:其他好文   时间:2020-05-03 21:42:45    阅读次数:520
800条   上一页 1 2 3 4 5 6 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!