2

Durandalでtypescriptを使用しようとしています。私は、ほとんどのメソッドとクラスで機能するtypescriptで動作するスターターサンプルを作成しようとしています。ただし、以下のFlickrクラスでは、selectメソッドで問題が発生します。このメソッドが呼び出されると、これはFlickrクラスではなく、選択されたアイテムのようです。誰かが私が何が悪いのかを理解するのを手伝ってもらえますか?他の方法は期待どおりに機能しています。

よろしく、Marwijn

///<reference path='../../Scripts/typings/requirejs/require.d.ts'/>
///<reference path='../../Scripts/typings/durandal/durandal.d.ts'/>
///<reference path='../../Scripts/typings/knockout/knockout.d.ts'/>

class Flickr 
{
    app: App;
    http: Http;

    displayName = 'Flickr';
    images = ko.observableArray([]);

    constructor(app: App, http: Http)
    {
        this.app = app;
        this.http = http;
    }

    public activate() : any 
    {
        //the router's activator calls this function and waits for it to complete before proceding
        if (this.images().length > 0) 
        {
            return;
        }

        return this.http.jsonp('http://api.flickr.com/services/feeds/photos_public.gne', { tags: 'mount ranier', tagmode: 'any', format: 'json' }, 'jsoncallback').then((response)=>
        {
            this.images(response.items);
        });
    }
    public select(item : any) {
        //the app model allows easy display of modal dialogs by passing a view model
        //views are usually located by convention, but you an specify it as well with viewUrl
        item.viewUrl = 'views/detail';
        this.app.showModal(item);
    }
    public canDeactivate() : any
    {
        //the router's activator calls this function to see if it can leave the screen
        return this.app.showMessage('Are you sure you want to leave this page?', 'Navigate', ['Yes', 'No']);
    }
}

define(['durandal/http', 'durandal/app'], function (http, app) 
{
    return new Flickr(app, http);
} );

これは次のJavaScriptにコンパイルされます。

var Flickr = (function () {
    function Flickr(app, http) {
        this.displayName = 'Flickr';
        this.images = ko.observableArray([]);
        this.app = app;
        this.http = http;
    }
    Flickr.prototype.activate = function () {
        var _this = this;
        if(this.images().length > 0) {
            return;
        }
        return this.http.jsonp('http://api.flickr.com/services/feeds/photos_public.gne', {
            tags: 'mount ranier',
            tagmode: 'any',
            format: 'json'
        }, 'jsoncallback').then(function (response) {
            _this.images(response.items);
        });
    };
    Flickr.prototype.select = function (item) {
        item.viewUrl = 'views/detail';
        this.app.showModal(item);
    };
    Flickr.prototype.canDeactivate = function () {
        return this.app.showMessage('Are you sure you want to leave this page?', 'Navigate', [
            'Yes', 
            'No'
        ]);
    };
    return Flickr;
})();
define([
    'durandal/http', 
    'durandal/app'
], function (http, app) {
    return new Flickr(app, http);
});
//@ sourceMappingURL=flickr.js.map
4

1 に答える 1

4

'this'を取得してビューモデルを参照するには、次のようにします(flickr.htmlビューが変更されていないことを前提としています)。

サムネイルのクリックバインディングをタグから変更します

<a href="#" class="thumbnail" data-bind="click:$parent.select">

<a href="#" class="thumbnail" data-bind="click: function (item) { $parent.select(item); }">

次に、$ parentオブジェクト(ビューモデル)でselectメソッドを直接呼び出すため、ビューモデルは'this'にバインドされます。

于 2013-03-25T13:40:54.140 に答える