0

版本 2.0.0

我正在尝试按照文档使用解析对象:https ://trigger.io/modules/parse/current/docs/index.html

forge.parse.push.subscribe(...)

我得到的错误:Uncaught TypeError: Cannot read property 'push' of undefined哪个。所以没有设置 parse 属性。听说这是配置设置不正确的问题,但是通过工具包设置解析似乎没有任何效果,仍然没有设置解析属性。

我的配置:

{
  ...
  "modules": {
    ...
    "parse": {
      "version": "2.0",
      "config": {
        "clientKey": "xxx",
        "applicationId": "xxx"
      }
    }
    ...
  }
  ...
}

伪造签名:

{
  button: Object
  config: Object
  document: Object
  enableDebug: function (){h.debug=true;h.priv.call("internal.showDebugWarning", },null,null);h.priv.call("internal.hideDebugWarning",{},null,null)}
  event: Object
  file: Object
  geolocation: Object
  internal: Object
  is: Object
  logging: Object
  message: Object
  notification: Object
  prefs: Object
  reload: Object
  request: Object
  tabs: Object
  tools: Object
  __proto__: Object
}
4

2 回答 2

2

看起来您正在尝试在非移动目标(可能是网络)上使用 Parse。解析推送通知仅适用于 Android 和 iOS。

于 2013-08-05T14:05:17.267 回答
0

下面试试。

forge.partners.parse.push.subscribe("offers",
function () {
  forge.logging.info("subscribed to offers push notifications!");
},
function (err) {
  forge.logging.error("error subscribing to offers notifications: "+
    JSON.stringify(err));
});
于 2013-08-05T13:33:18.930 回答