菜鸟教程小白 发表于 2022-12-12 14:23:54

ios - 在 iOS 中为 Firebase 使用 Cloud Functions


                                            <p><p>我使用 Node.js 为 Firebase 编写了一个云函数。 </p>

<pre><code>exports.fetchStudents = functions.https.onRequest((request, response) =&gt; {
    return admin.database().ref(&#39;Student&#39;).once(&#39;value&#39;, (snapshot) =&gt; {
      var students = snapshot.val();
      response.send(students)
      console.log(students)
    });
});
</code></pre>

<p>我已将它部署在 Firebase Server 和控制台上,我得到了所需的值。
我不想在我的 iOS 应用程序中使用此功能。我真的不知道如何在我的 iOS 应用中使用这些功能。</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我已经做到了,这很容易。您需要的是在成功上传函数后点击 CLI 提供的 url。</p>

<blockquote>
<p><strong>Function URL</strong> (helloWorld): <a href="https://us-central1-project-id.cloudfunctions.net/helloWorld" rel="noreferrer noopener nofollow">https://us-central1-project-id.cloudfunctions.net/helloWorld</a>.</p>
</blockquote>

<p>将 project-id 替换为您的项目 ID。</p>

<pre><code>let url = URL(string:&#34;https://us-central1-project-id.cloudfunctions.net/fetchStudents&#34;)!

let urlReq = URLRequest(url: url)

let students = Alamofire.request(urlReq).validate().responseJSON { (response) in
         switch response.result{
         case .success(let value):
            completion(JSON(value), nil)
         case .failure(let error):
            completion(nil, String(describing: error))
      }
   }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中为 Firebase 使用 Cloud Functions,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/47901274/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/47901274/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中为 Firebase 使用 Cloud Functions