IBM Worklight - How to pass parameters from the application to the adapter?

别等时光非礼了梦想. 提交于 2019-12-02 03:53:42

You can pass the parameters using simple JavaScript.
For example:

HTML

First name: <input type="text" id="firstname"/>
Last name: <input type="text" id="lastname"/>
<input type="button" onclick="submitName()" value="Submit Name"/>

App JS

function submitName() {
    var invocationData = {
            adapter : 'exampleAdapter',
            procedure : "showParameters",
            parameters : [$('#firstname').val(),$('#lastname').val()]
    };

    var options = {
            onSuccess : success,
            onFailure : failure
    };

    WL.Client.invokeProcedure(invocationData, options);
}


function success() {
    alert ("success");
}

function failure() {
    alert ("failure");
}

Adapter XML

<procedure name="showParameters"/>

Adapter implementation

function showParameters(firstname, lastname) {
    WL.Logger.info  ("The submitted parameters are: '" + firstname + "' and '" + lastname + "'");
}

To actually see the logged line you'll need to:

  1. Open the Servers view in Eclipse
  2. Expend the Worklight Development Server entry
  3. Double-click on Server Configuration
  4. Click on Logging
  5. Change the Console log leve from AUDIT to INFO (using the dropdown)

    Full size image: http://i.stack.imgur.com/9llHc.png

  6. You may need to Project >> Clean...

  7. The outcome will be in the Console view for the Worklight Development Server

    Full size image: http://i.stack.imgur.com/x2Hv1.png

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!