上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 74 下一页
摘要: PPT在线转WORD网址:https://convertio.co/zh/ppt-docx/ 阅读全文
posted @ 2020-03-18 10:01 岁月淡忘了谁 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 相关文档: W3c的Solr文档比较新也比较全:https://www.w3cschool.cn/solr_doc/ 安装: Solr官网:http://lucene.apache.org/solr/ linux和windows,mac都可以安装,对应自己的版本进行安装即可。 在测试了linux和w 阅读全文
posted @ 2020-01-16 10:23 岁月淡忘了谁 阅读(494) 评论(0) 推荐(0) 编辑
摘要: Solr 相关链接: Solr 各版本下载地址:http://archive.apache.org/dist/lucene/solr/ 本手册翻译自 Solr 官方网站:http://lucene.apache.org/solr/resources.html 详细的solr中文手册链接:https: 阅读全文
posted @ 2020-01-16 10:06 岁月淡忘了谁 阅读(770) 评论(0) 推荐(0) 编辑
摘要: 看到很多所谓的解决办法都没有效果。比如把solrconfig.xml里的<str name="df">text</str>改成<str name="df">id</str>,或者在schema.xml里添加一个text的fieldType,都不行。我干脆把它注释掉,结果导致solr服务都不正常了。 阅读全文
posted @ 2020-01-16 09:54 岁月淡忘了谁 阅读(2273) 评论(0) 推荐(0) 编辑
摘要: 代码如下: 阅读全文
posted @ 2019-12-09 13:07 岁月淡忘了谁 阅读(6414) 评论(0) 推荐(0) 编辑
摘要: //只提取汉字 function GetChinese(strValue) { if(strValue!= null && strValue!= ""){ var reg = /[\u4e00-\u9fa5]/g; return strValue.match(reg).join(""); } else ... 阅读全文
posted @ 2019-11-28 17:39 岁月淡忘了谁 阅读(10304) 评论(0) 推荐(0) 编辑
摘要: params = params.replace(/<\/?.+?>/g,"").replace(/ /g,""); 阅读全文
posted @ 2019-11-28 17:38 岁月淡忘了谁 阅读(2271) 评论(0) 推荐(0) 编辑
摘要: 页面主要代码如下: 数据调用方法代码如下: 无缝滚动代码如下: 阅读全文
posted @ 2019-11-12 14:51 岁月淡忘了谁 阅读(590) 评论(0) 推荐(0) 编辑
摘要: File file = new File(dirPath); if (!file.exists()) { file.mkdirs(); } 阅读全文
posted @ 2019-11-08 17:23 岁月淡忘了谁 阅读(5113) 评论(0) 推荐(0) 编辑
摘要: 其实这个很简单,思路就是把clob转为varchar,在查询的时候使用dbms_lob.substr(coulmn,4000);就可以把指定列从clob转化为varchar2。 阅读全文
posted @ 2019-11-08 15:42 岁月淡忘了谁 阅读(565) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 74 下一页