菜鸟教程小白 发表于 2022-12-13 06:24:58

ios - Meteor mobile-config.js accessRule 不起作用


                                            <p><p>在 iOS 模拟器上运行我的应用程序时出现白名单错误。这是我的 mobile-config.js 文件,它位于 client/js/mobile-config.js</p>

<pre><code>App.info({
id: &#39;com.example.matt.uber&#39;,
name: &#39;über&#39;,
description: &#39;Get über power in one button click&#39;,
author: &#39;Matt Development Group&#39;,
email: &#39;[email protected]&#39;,
website: &#39;http://example.com&#39;
});

// Set up resources such as icons and launch screens.
App.icons({
&#39;iphone&#39;: &#39;icons/icon-60.png&#39;,
&#39;iphone_2x&#39;: &#39;icons/[email protected]&#39;,
// ... more screen sizes and platforms ...
});

App.launchScreens({
&#39;iphone&#39;: &#39;splash/Default~iphone.png&#39;,
&#39;iphone_2x&#39;: &#39;splash/Default@2x~iphone.png&#39;,
// ... more screen sizes and platforms ...
});

App.accessRule(&#39;*&#39;);
</code></pre>

<p>但访问规则不会使用新的 accessRule 更新 cordova 自动生成的 config.xml 文件。</p>

<p>更新:</p>

<p>我将 config-mobile.js 移动到了我的 meteor 项目的根目录。现在正在使用“*”访问规则更新 config.xml。但我仍然在模拟器中收到白名单拒绝错误。请帮忙!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>仅根据需要尝试添加访问规则:</p>

<pre><code>App.accessRule(&#39;https://*.cloudfront.net/*&#39;);
App.accessRule(&#39;https://pbs.twimg.com/*&#39;);
</code></pre>

<p>也更喜欢使用 https 而不是 http。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Meteor mobile-config.js accessRule 不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29709237/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29709237/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Meteor mobile-config.js accessRule 不起作用