如何使用 javascript 访问在函数中传递的对象参数

How do I access object parameter passed in a function using javascript?

本文关键字:对象 参数 函数 何使用 javascript 访问      更新时间:2023-09-26
如何使用

javascript访问函数中传递的对象参数?我想动态使用各种column_name。feature.attribute 具有列名。我想将功能属性列名连接起来。到目前为止,我已经尝试过:

我的代码:

var column_name = "LOCAL_POP";
var initialize = {
    init_style: function() {
        style = new OpenLayers.StyleMap({
            "default": new OpenLayers.Style(
                    {
                        fillColor: "${getColor}",
                        strokeColor: "#00FF01",
                        fillOpacity: 0.7,
                        graphicZIndex: 1,
                        label: "${DISTRICT}"
                    },
            {
                context: {
                    getColor: function(feature) {
**// tested by creating a local variable and window variable**
                        this.feature = feature;
                        var feature_name = 'feature.attributes.' + column_name;
                        console.log(window);
                        console.log(this['feature_name']);
                        console.log(window['feature_name']);
                        return  feature_name > 1000000 ? '#006D2C' :
                                feature_name > 100000 ? '#31A354' :
                                feature_name > 5000 ? '#74C476' :
                                feature_name >= 0 ? '#A1D99B' :
                                '';
                    }
                }
            }),
            "select": new OpenLayers.Style(
                    {
                        strokeColor: "#00FF01",
                        fillOpacity: 0.7
                    })
        });
        return style;
    }
};

您的财产访问错误。 要动态访问对象的属性,请使用不带引号的方括号表示法(这使它成为字符串而不是所需的变量):

feature.attributes[column_name]

这是您的固定代码:

var column_name = "LOCAL_POP";
var initialize = {
    init_style: function() {
        style = new OpenLayers.StyleMap({
            "default": new OpenLayers.Style(
                    {
                        fillColor: "${getColor}",
                        strokeColor: "#00FF01",
                        fillOpacity: 0.7,
                        graphicZIndex: 1,
                        label: "${DISTRICT}"
                    },
            {
                context: {
                    getColor: function(feature) {
**// tested by creating a local variable and window variable**
                        this.feature = feature;
                        var feature_name = feature.attributes[column_name];
                        return  feature_name > 1000000 ? '#006D2C' :
                                feature_name > 100000 ? '#31A354' :
                                feature_name > 5000 ? '#74C476' :
                                feature_name >= 0 ? '#A1D99B' :
                                '';
                    }
                }
            }),
            "select": new OpenLayers.Style(
                    {
                        strokeColor: "#00FF01",
                        fillOpacity: 0.7
                    })
        });
        return style;
    }
};