在文章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);
}
请给我一些提示。感谢。