ionic hide-tabs不适用于嵌套视图

时间:2015-11-18 01:57:07

标签: angularjs ionic-framework ionic

在文章How do I hide the tabs in Ionic Framework之后,hide-tabs指令工作正常。 但是当嵌套视图时它有一些问题。

正如您在codepen http://codepen.io/WilsonFpz/pen/MaxaQR中看到的,当用户从home-> level1-> level2导航时, level2的标签再次显示,但$ root.hideTabs在打印时为false。

if (prop.PropertyType.GetGenericTypeDefinition() == typeof (IList<>))
{
    var lst = new List<type of targetProp>()
    foreach(var val in prop.GetValue())
    {
        var item = new Location() (I have to figure out this initialization based on the List type of targetProp.  In this case it would be List<Location>)
         var retval = MapObject(val, item);
         lst.Add(retval);
    }
    targetProp.SetValue(target, lst);
}

请给我一些提示。感谢。

0 个答案:

没有答案