请问如何将遍历JObject
得到每一项的值
谢谢!
Your Answer
1 answers
var enumerable = jObject as IEnumerable;
if (enumerable == null) return;
var enumtor = enumerable.GetEnumerator();
while (enumtor.MoveNext())
{
object obj = enumtor.Current;
string key=obj.Name;
string value=obj.Value.ToString();
}
你可以用这个试一下,jObject是JObject对象。
Hot tools Tags
Hot Questions
How to Sort a Multi-dimensional Array by Value
2026-01-03 21:01:12
MySQL CONVERT_TZ()
2026-01-03 20:42:14
What do these JavaScript bitwise operators do?
2026-01-03 20:22:19
How does AJAX work?
2026-01-03 20:01:15
Dynamically allocating an array of objects
2026-01-03 19:43:11
Popular tool
vc9-vc14 (32+64 bit) runtime library collection (link below)
Download the collection of runtime libraries required for phpStudy installation
VC9 32-bit
VC9 32-bit phpstudy integrated installation environment runtime library
PHP programmer toolbox full version
Programmer Toolbox v1.0 PHP Integrated Environment
VC11 32-bit
VC11 32-bit phpstudy integrated installation environment runtime library
SublimeText3 Chinese version
Chinese version, very easy to use
Hot Topics
Douyin level price list 1-75
20416
7
20416
7
wifi shows no ip assigned
13576
4
13576
4
Hot Article
How to set up price alerts so you don't miss key entry points?
2026-01-01
By DDD
Why do professional traders advise newbies to start with low leverage?
2026-01-01
By DDD
Tutorial on existence check of nested array values in PHP multidimensional array
2025-12-28
By DDD
How to draw dotted lines in PS How to draw various dotted lines in PS
2025-12-28
By DDD






