2013-08-28 92 views
1

訪問中繼器內的父範圍時遇到問題。訪問Polymer.dart中的父上下文

下面的代碼工作:

<polymer-element name="x-playground" extends="div" attributes="children parent"> 
    <template> 
    {{parent}} 
    <template repeat="{{children}}"> 
     {{}} 
    </template> 
    </template> 

    <script type="application/dart"> 
    import 'package:polymer/polymer.dart'; 
    @CustomTag("x-playground") 
    class PlaygroundView extends PolymerElement with ObservableMixin { 
     @observable List children; 
     @observable String parent; 
    } 
    </script> 
</polymer-element> 

,但如果我用下面的替換:

<template repeat="{{children}}"> 
     {{parent}} 
    </template> 

它拋出variable not found: parent in 770699111

有沒有辦法訪問父範圍?

+0

這是錯誤https://code.google.com/p/dart/issues/detail?id=12742我認爲。 –

回答