0

tiapp.xml ファイルには、実稼働環境と開発環境のキーが保持されます。

コピーして貼り付けて切り替えることもできると思いますが、本番環境をテストする簡単な方法はありますか? 「production = true」などのxmlファイルのタグのように?

4

1 に答える 1

0

次のtiapp.xmlようになります。

<property name="appc-app-id" type="string">123</property>
<property name="acs-authbase-url-development" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-development" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-oauth-secret-development" type="string">123</property>
<property name="acs-oauth-key-development" type="string">123</property>
<property name="acs-api-key-development" type="string">123</property>
<property name="acs-username-development" type="string">appc_app_user_dev</property>
<property name="acs-password-development" type="string">123</property>
<property name="acs-authbase-url-production" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-production" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-oauth-secret-production" type="string">123</property>
<property name="acs-oauth-key-production" type="string">123</property>
<property name="acs-api-key-production" type="string">123</property>
<property name="acs-username-production" type="string">appc_app_user</property>
<property name="acs-password-production" type="string">123</property>
<property name="appc-org-id" type="string">123</property>
<property name="appc-creator-user-id" type="string">123</property>

ご覧のとおり、サフィックス-development-productionサフィックスは、その値が使用される環境を決定します。サフィックスを省略して、すべての環境で使用することもできます。

于 2016-05-30T18:38:32.140 に答える