2

我正在使用 kapsel 进行注册,因为我可以知道用户是否已经注册。但是我无法调用 init。请帮助我完成这个

我根据sybase提供的文档 http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc01993.0300/doc/html/LogonController-js.html添加了所有插件

var defaultContext = {   "serverHost" : "192.168.254.159",   "https" : "false",   "serverPort" : "8080", };
sap.Logon.init(logonSuccess, logonError, appId, defaultContext);



error : uncaught typeerror cannot call method 'init' of undefined
It seems
4

1 回答 1

1

您的 Kapsel 插件似乎没有正确加载。

这是将其添加为 Cordova 插件的命令:cordova plugin add <full path to directory containing Kapsel plugins>\logon

于 2014-10-18T15:30:21.213 回答