ios - Restkit,将参数放在路径中
<p><p>我想使用这个 api 端点</p>
<pre><code>.../country/search/{query}
</code></pre>
<p>另一种方式是</p>
<pre><code>.../country/search?query={query}
</code></pre>
<p>但是 api 不支持。如何使用 restkit 支持第一种样式而不违反路径模式?</p>
<pre><code>pathPattern:@"/country/search/"
</code></pre>
<p>不被认可</p>
<pre><code>getObjectsAtPath:
</code></pre>
<p>因此 restkit 无法加载正确的映射。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>将您的路径模式设置为:</p>
<pre><code>pathPattern:@"country/search/:query"
</code></pre>
<p>参见 <a href="https://github.com/NimbusKit/sockit" rel="noreferrer noopener nofollow">sockit</a>有关路径模式匹配工作原理的描述。</p>
<p>此外,请确保您的前导斜线匹配。</p></p>
<p style="font-size: 20px;">关于ios - Restkit,将参数放在路径中,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/22675579/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/22675579/
</a>
</p>
页:
[1]