菜鸟教程小白 发表于 2022-12-12 11:06:50

ios - 如何在ios中发送多个参数?


                                            <p><p>如何发送<code>json</code>格式的参数?</p>

<p><strong>以下是我的输入参数:</strong></p>

<pre><code>[
    {
      &#34;LoginID&#34;:151,
      &#34;UserID&#34;:0,
      &#34;SubUserID&#34;:0,
      &#34;WorkGroupID&#34;:92,
      &#34;WorksFor&#34;:&#34;Doctor&#34;,
      &#34;UserWorkGroup&#34;:0
    },
    {
      &#34;SortingName&#34;:&#34;&#34;,
      &#34;Searching&#34;:true,
      &#34;SortingOrder&#34;:&#34;Desc&#34;,
      &#34;RecordsCount&#34;:10,
      &#34;PageIndex&#34;:0
    }
]
</code></pre>

<p><strong>之前我发送的参数如下:</strong></p>

<pre><code> initWithObjectsAndKeys:@&#34;55&#34;,@&#34;LoginID&#34;,@&#34;0&#34;,@&#34;UserID&#34;,@&#34;0&#34;,@&#34;SubUserID&#34;,@&#34;90&#34;,@&#34;WorkGroupID&#34;,@&#34;Doctor&#34;,@&#34;WorksFor&#34;,@&#34;0&#34;,@&#34;UserWorkGroup&#34;,nil] andRequestType:@&#34;POST&#34;];
</code></pre>

<p>如何像这样发送,但现在我需要添加上面提到的更多输入?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>只需使用以下代码..</p>

<pre><code>NSMutableArray * myArray = [init];

NSMutableDictionary * myData = [init];
;
;
;
;
;
;

;

myData = [init];
;
;
;
;
;
;

NSData *jsonData2 = ;
NSString *jsonString = [ initWithData:jsonData2 encoding:NSUTF8StringEncoding];
NSLog(@&#34;Your final jsonData as string:\n%@&#34;, jsonString);
</code></pre>

<p>如果您想将此数据发送到服务器,那么您可以使用此代码:</p>

<pre><code>NSData *dataToSend = ;

initWithObjectsAndKeys:dataToSend] andRequestType:@&#34;POST&#34;];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在ios中发送多个参数?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36995718/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36995718/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在ios中发送多个参数?