任何人都可以解釋如何或指導我的教程,詳細解釋如何將Rails 5 API連接到Phonegap。我對Rails比較陌生,沒有phonegap方面的經驗,現在已經在尋找幾天瞭解詳情。我在前端使用了HTML5,CSS和JQuery。Rails 5 API和Phonegap
真的很感謝任何幫助。
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.yourname.workshop" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Workshop</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="[email protected]" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="http://localhost:3001" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>
非常感謝!特別是幫助的例子。所以理解所有這些 - 可能是一個愚蠢的問題,但是我在開發過程中如何將控制器/服務器連接到phonegap?我在上面的編輯中插入了我的config.xml文件。我添加的'localhost'這行是否有訣竅? – dgreen22
我從來沒有使用phonegap,所以我不能肯定地說。但是,如果這爲所有請求設置了域,那麼它應該可以工作 – Brennan