Update README.md (#677)

This commit is contained in:
hl123123 2019-04-30 20:26:23 +08:00 committed by Medcl
parent c41e5a5e6f
commit e386a62bbd

View File

@ -55,7 +55,7 @@ curl -XPUT http://localhost:9200/index
2.create a mapping 2.create a mapping
```bash ```bash
curl -XPOST http://localhost:9200/index/fulltext/_mapping -d' curl -XPOST http://localhost:9200/index/fulltext/_mapping -H 'Content-Type:application/json' -d'
{ {
"fulltext": { "fulltext": {
"_all": { "_all": {
@ -82,25 +82,25 @@ curl -XPOST http://localhost:9200/index/fulltext/_mapping -d'
3.index some docs 3.index some docs
```bash ```bash
curl -XPOST http://localhost:9200/index/fulltext/1 -d' curl -XPOST http://localhost:9200/index/fulltext/1 -H 'Content-Type:application/json' -d'
{"content":"美国留给伊拉克的是个烂摊子吗"} {"content":"美国留给伊拉克的是个烂摊子吗"}
' '
``` ```
```bash ```bash
curl -XPOST http://localhost:9200/index/fulltext/2 -d' curl -XPOST http://localhost:9200/index/fulltext/2 -H 'Content-Type:application/json' -d'
{"content":"公安部:各地校车将享最高路权"} {"content":"公安部:各地校车将享最高路权"}
' '
``` ```
```bash ```bash
curl -XPOST http://localhost:9200/index/fulltext/3 -d' curl -XPOST http://localhost:9200/index/fulltext/3 -H 'Content-Type:application/json' -d'
{"content":"中韩渔警冲突调查韩警平均每天扣1艘中国渔船"} {"content":"中韩渔警冲突调查韩警平均每天扣1艘中国渔船"}
' '
``` ```
```bash ```bash
curl -XPOST http://localhost:9200/index/fulltext/4 -d' curl -XPOST http://localhost:9200/index/fulltext/4 -H 'Content-Type:application/json' -d'
{"content":"中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首"} {"content":"中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首"}
' '
``` ```