IBM Worklight 6.1 - 如何将worklight适配器与骨干视图集成?

时间:2014-01-09 10:04:19

标签: backbone.js ibm-mobilefirst

我正在为我的移动应用项目使用IBM worklight 6.1和backbone.js。我的问题是,如何将worklight适配器与骨干视图集成?

Worklight适配器

Username.xml

<wl:adapter name="Username"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:wl="http://www.worklight.com/integration"
    xmlns:http="http://www.worklight.com/integration/http">

    <displayName>Username</displayName>
    <description>Username</description>
    <connectivity>
        <connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
            <protocol>http</protocol>
            <domain>example.com</domain>
            <port>9081</port>           
        </connectionPolicy>
        <loadConstraints maxConcurrentConnectionsPerNode="2" />
    </connectivity>

    <procedure name="getUsername"> </procedure>

</wl:adapter>

用户名-impl.js

function getUsername(userAlias,locale) {
    path = "rest-rib/service/Login/login_username?userAlias=" + userAlias + "&locale=" + locale;

    var input = {
        method : 'post',
        returnedContentType : 'json',
        path : path
    };


    return WL.Server.invokeHttp(input);
}

BackboneView

HomeView.js

define(['jquery', 'underscore', 'backbone', 'text!modules/home/homeViewTemplate.html'], function($, _, Backbone, homeViewTemplate) {
    var HomeView = Backbone.View.extend({
        initialize: function() {
            this.$el.off();
        },
        render: function() {
            this.$el.html(homeViewTemplate);
        },
    });
    return HomeView;
});

提前多多感谢。

1 个答案:

答案 0 :(得分:1)

不确定适配器,但您可以查看此博客文章和视频,描述如何使用IBM Worklight和backbone.js构建MVC应用程序。

https://www.ibm.com/developerworks/community/blogs/worklight/entry/building_mvc_applications_with_ibm_worklight_and_backbone_js?lang=en

  

本教程的目标是演示如何创建MVC   IBM Worklight和backbone.js的应用程序。

请注意,结实   建议您使用Worklight和Backbone.js的知识   最大结果。

我们将创建一个将检索的简单应用程序   来自Worklight适配器的RSS提要并将其显示在屏幕上。点击   在Feed项上,将在警告框中弹出Feed描述。