UTF8中的无效字节

时间:2015-07-29 08:10:45

标签: json character-encoding couchdb

在使用CouchDB和json期间我遇到了错误

  var assembly = System.Reflection.Assembly.Load("AssemblyName");
  var resourceManager = new System.Resources.ResourceManager("Fully.Quallified.Namespace.Name.Resources", assembly);
  var wantedString = resourceManager.GetString("theStringYouWant");  

1 个答案:

答案 0 :(得分:1)

仔细检查您是否在请求正文中发送了有效的JSON。

您的POST 标题应该是content-type: application/json,而您的POST 正文应该是一个文档,例如{"greeting":"Hello, world!"}