摘要:
1、下载ik分词器:https://github.com/medcl/elasticsearch-analysis-ik/releases 2、将下载的压缩包放入elasticsearch/plugins里(这里我重命名了一下) 3、配置自己的分词 config目录下IKAnalyzer.cfg.x 阅读全文
摘要:
1、下载:https://www.elastic.co/cn/downloads/elasticsearch 2、可视化界面:https://github.com/mobz/elasticsearch-head npm install npm run start 3、配置跨域 在elasticsea 阅读全文
摘要:
在开发版本打开了调试模式,再用上线版本也会有。要在开发版关闭就行。但是只有你自己有,用户是没有的。 阅读全文
摘要:
ios的时间格式必须为 2020/01/11,所以-必须都替换为/; new Date('2020-01-11').getTime() 改为 new Date('2020/01/11').getTime() 阅读全文