5

この例を変更しようとしています http://storelocator.googlecode.com/git/examples/panel.html

JavaScript コードはこちら: https://gist.github.com/2725336

私が問題を抱えている側面は、これを変更することです:

MedicareDataSource.prototype.FEATURES_ = new storeLocator.FeatureSet(
  new storeLocator.Feature('Wheelchair-YES', 'Wheelchair access'),
  new storeLocator.Feature('Audio-YES', 'Audio')
);

関数からFeatureSetを作成するため、たとえば、JSONオブジェクトを解析するこの関数があります

WPmmDataSource.prototype.setFeatures_ = function(json) {
    var features = [];

    // convert features JSON to js object
    var rows = jQuery.parseJSON(json);

    // iterate through features collection
    jQuery.each(rows, function(i, row){

    var feature = new storeLocator.Feature(row.slug + '-YES', row.name)

    features.push(feature);
    });

    return  new storeLocator.FeatureSet(features);
    };

最初のコードスニペットを次のように変更します

WPmmDataSource.prototype.FEATURES_ = this.setFeatures_(wpmm_features);

エラーを返します:

Uncaught TypeError: Object [object Window] has no method 'setFeatures_'
4

1 に答える 1

1

とメソッドにいくつかの変更を加える必要があると思いWPmmDataSource.prototypeますsetFeatures_

WPmmDataSource.prototype = {
    FEATURES_ : null,        
    setFeatures_ : function( json ) {
        //Set up an empty FEATURES_ FeatureSet
        this.FEATURES_ = new storeLocator.FeatureSet();
        //avoid the use of "this" within the jQuery loop by creating a local var
        var featureSet = this.FEATURES_;
        // convert features JSON to js object
        var rows = jQuery.parseJSON( json );
        // iterate through features collection
        jQuery.each( rows, function( i, row ) {
            featureSet.add(
                new storeLocator.Feature( row.slug + '-YES', row.name ) );
        });
    }
}

これにより、 から値を返すことによって代入を行う必要がなくなりsetFeatures_ます。FEATURES_メンバーに直接アクセスできます。だから行:

WPmmDataSource.prototype.FEATURES_ = this.setFeatures_(wpmm_features);

は不要になりました。これは、後で のインスタンスを作成したときにWPmmDataSource、コードが次のように機能することも意味します。

var wpmd = new WPmmDataSource( /* whatever options, etc. you want */ );
wpmd.setFeatures_( json );
// Thereafter, wpmd will have its FEATURES_ set

あなたが何を達成しようとしているのか正確にはわかりませんが、これにより、現在の失速のハードルを乗り越えることができると思います. これがあなたを前進させることを願っています -

于 2012-05-21T00:28:43.170 に答える