1

次のように定義された要素があります。

var m1 = new joint.shapes.devs.Model({
    position: { x: 100, y: 50 },
    size: { width: 190, height: 50 },
    inPorts: ['in'],
    outPorts: ['out'],
    attrs: {
        '.label': { text: 'Model','ref-x': .4, 'ref-y': .25 ,fill: '#fefefe',
            'font-size': 14,
            'font-weight': 'bold', 
            'font-variant': 'small-caps' },
        rect: { fill: '#fefefe'},
        '.inPorts circle': { r:5 ,fill: '#16A085' ,magnet: 'passive', type: 'input'},
        '.outPorts circle': { r:5, fill: '#E74C3C',magnet: 'passive',type: 'output' },
    }

問題は、「.label」属性を取得するにはどうすればよいですか? たとえば、「モデル」というテキストを取得する必要があります。どうすればよいですか? 'rect' の 'fill' 属性を取得したい場合は、m1.get('attrs').rect.fill を使用するだけです。

しかし、「.label」属性を取得する方法がわかりません。

4

2 に答える 2