菜鸟教程小白 发表于 2022-12-12 16:23:06

ios - 如何在 iOS 中限制用户请求解析?


                                            <p><p>我正在 iOS 中开发一个允许用户从服务器检索数据的应用程序。这个应用程序只允许用户从服务器获取数据并保存到本地,他们不能删除或更新数据。所以每天我都会更新我的数据并允许用户向服务器请求获取新数据。我决定使用 Parse,但问题是 Parse 每月只允许 100 万个请求,因此我想限制用户请求。我只想让他们每天请求 2 次。有没有办法实现这个东西?</p>

<p>请帮助我,提前谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>对不起,没发现是ios!!</p>

<p>所以对于 Android:
建立一个计数器来记录他们访问 parse.com 的次数</p>

<pre><code> if (i &gt; 2){
   // do not access parse
} else if (i &lt; 2) {
   // access parse
   i++;
}
</code></pre>

<p>然后你必须将 <code>i</code> 存储在 <code>savedInstanceState</code> 中。</p>

<pre><code> @Override
public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   if( savedInstanceState != null ) {
      Toast.makeText(this, savedInstanceState .getInt(&#34;counter&#34;), Toast.LENGTH_LONG).show();
}
}

@Override
public void onSaveInstanceState(Bundle outState) {
   super.onSaveInstanceState(outState);
   outState.putInt(&#34;count&#34;, i);
}
</code></pre>

<h2>IOS的方式<a href="https://developer.apple.com/library/ios/documentation/iphone/conceptual/iphoneosprogrammingguide/StatePreservation/StatePreservation.html" rel="noreferrer noopener nofollow">saving/restoring info</a> </h2></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 iOS 中限制用户请求解析?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19958027/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19958027/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 iOS 中限制用户请求解析?