通过 curl 将 JSON 插入 Riak
Insert JSON into Riak via curl
我有 JSON:
{
title: "Some title",
author: "Name",
text: "This is text..."
}
我想通过 curl.I 使用命令存储到我的 Riak:
curl -v -X PUT http://192.168.56.12:10018/riak/news/news1 -H "Content-Type: application/json" -d "{"title":"Some title","author":"Name","text":"This is text..."}"
当我尝试通过 Firefox 使用密钥 news1 查看名为 news 的存储桶中的内容时,我只得到:{title:Some
这里哪里不对?
你对 -d
的论点应该用单引号引起来:
-d '{"title":"Some.....}'
我有 JSON:
{
title: "Some title",
author: "Name",
text: "This is text..."
}
我想通过 curl.I 使用命令存储到我的 Riak:
curl -v -X PUT http://192.168.56.12:10018/riak/news/news1 -H "Content-Type: application/json" -d "{"title":"Some title","author":"Name","text":"This is text..."}"
当我尝试通过 Firefox 使用密钥 news1 查看名为 news 的存储桶中的内容时,我只得到:{title:Some
这里哪里不对?
你对 -d
的论点应该用单引号引起来:
-d '{"title":"Some.....}'