类型名称 'serializeObject' 在类型 'JsonConvert' 中不存在
Type name 'serializeObject' does not exist in the type 'JsonConvert'
我正在尝试将一些数据转换为 Json 以发送到 CloudFlare API。我正在尝试使用 Newtonsoft.Json.JsonConvert.SeriablizeObject() 来完成此操作,但我收到 Intellisense 错误,类型名称 'serializeObject' 在类型 'JsonConvert' 中不存在。我安装了 NuGet 包 Newtonsoft.Json,但它无法识别 SerializeObject() 方法。我不确定我错过了什么。
是因为你调用的方法有误,去掉行中的new运算符
var json = new JsonConvert.SerializeObject(updateDnsRecord);
到
var json = JsonConvert.SerializeObject(updateDnsRecord);
我正在尝试将一些数据转换为 Json 以发送到 CloudFlare API。我正在尝试使用 Newtonsoft.Json.JsonConvert.SeriablizeObject() 来完成此操作,但我收到 Intellisense 错误,类型名称 'serializeObject' 在类型 'JsonConvert' 中不存在。我安装了 NuGet 包 Newtonsoft.Json,但它无法识别 SerializeObject() 方法。我不确定我错过了什么。
是因为你调用的方法有误,去掉行中的new运算符
var json = new JsonConvert.SerializeObject(updateDnsRecord);
到
var json = JsonConvert.SerializeObject(updateDnsRecord);