We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe5fcb commit 050699aCopy full SHA for 050699a
1 file changed
README.md
@@ -134,17 +134,17 @@ APIJSON是一种JSON传输结构协议。<br />
134
请求:
135
<pre><code class="language-json">
136
{
137
- "[]":{ //请求一个Array
138
- "page":0, //Array条件
+ "[]":{ //请求一个数组
+ "page":0, //数组条件
139
"count":2,
140
- "User":{ //请求一个名为User的Object
141
- "sex":0, //Object条件
+ "User":{ //请求一个名为User的对象
+ "sex":0, //对象条件
142
"@column":"id,name,head" //指定返回字段
143
},
144
"Moment":{
145
"userId@":"/User/id" //缺省依赖路径,从所处容器的父容器路径开始
146
147
- "Comment[]":{ //请求一个名为Comment的Array
+ "Comment[]":{ //请求一个名为Comment的数组
148
149
"Comment":{
150
"momentId@":"[]/Moment/id" //完整依赖路径
0 commit comments