rails应用程序和chrome app之间的通信

时间:2017-06-29 23:33:08

标签: ruby-on-rails nfc google-chrome-app

目前正在处理rails应用程序,我想向此chrome应用程序https://github.com/GoogleChrome/chrome-nfc发送和接收数据。

我在app.js文件中添加了chrome.runtime.sendMessage()函数来发送一个简单的" hello world"到我的浏览器和

chrome.runtime.onMessage.addListener(function(response,sender,sendResponse){alert(response);});

表明它,但我一无所获。 这是他们之间沟通的正确方式吗?

1 个答案:

答案 0 :(得分:0)

您使用近场(NFC)吗?如果没有,您可能想要更简单地在Chrome服务器和服务器上的Rails之间传递信息,使用XHR请求:

https://developer.chrome.com/apps/app_external#external