在使用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");
答案 0 :(得分:1)
仔细检查您是否在请求正文中发送了有效的JSON。
您的POST 标题应该是content-type: application/json
,而您的POST 正文应该是一个文档,例如{"greeting":"Hello, world!"}
。