摘要: p22 No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc出现这个问题是没有loadbalanc 但是nacos中ribbon会造成loadbalan 阅读全文
posted @ 2021-09-18 18:19 红藕 阅读(1329) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdlib.h>#define MAXSIZE 10000#define SUCCESS 0#define OVERFLOW 0#define ERROR -1typedef int ElemType;typedef int Status;t 阅读全文
posted @ 2021-03-04 14:04 红藕 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 官网中文版 https://www.webpackjs.com/concepts/ https://webpack.docschina.org/guides/installation/ (建议看官网比较详细,整个流程会使你对webpack的理解更加清晰) 容易上手版 https://www.jb51 阅读全文
posted @ 2019-05-29 17:27 红藕 阅读(109) 评论(0) 推荐(0) 编辑
摘要: Module not found: Error: Can't resolve 'file-loader' in 要下载一些东西 node.js的 npm install --save-dev file-loader https://stackoverflow.com/questions/343529 阅读全文
posted @ 2019-05-29 17:18 红藕 阅读(4055) 评论(0) 推荐(0) 编辑
摘要: 在做webpack-demo的时候遇到的错误 要执行 npm install 再输入npm run build 就可以执行了 学习webpack https://www.webpackjs.com/concepts/ https://webpack.docschina.org/guides/inst 阅读全文
posted @ 2019-05-29 10:02 红藕 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Error reading scss: no such file or directory. Sass is watching for changes. Press Ctrl-C to stop. google上一直找答案,最终还是官网上的答案,很难受 https://sass-lang.com/g 阅读全文
posted @ 2019-05-27 09:41 红藕 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: 方法一 #include"stdio.h"#include"math.h"void sortPosition(int a[],int n);void main(){ int i,j,s,n; int a[1000]; int count=0; printf("1000以内的完数\n"); for(i 阅读全文
posted @ 2019-05-07 15:47 红藕 阅读(217) 评论(0) 推荐(0) 编辑
摘要: var a; // var a=100;//第一行为100 function yubianyi(a){ document.write(a,'<br>');//underfine a=100; document.write(a,'<br>');//100 var a=10; document.writ 阅读全文
posted @ 2019-03-18 13:53 红藕 阅读(106) 评论(0) 推荐(0) 编辑
摘要: http://www.runoob.com/cssref/css-selectors.html 1.* 选择所有元素 2.div>p 3.div+p css div>p{ background-color:yellow;} div+p{ background-color:yellow;} body 阅读全文
posted @ 2019-03-18 12:47 红藕 阅读(108) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zhou120189162/article/details/78454740 https://blog.csdn.net/u010802169/article/details/80490886 详情请查看官网https://git-scm.com/book 阅读全文
posted @ 2019-03-18 10:44 红藕 阅读(411) 评论(0) 推荐(0) 编辑