对于以下
module yy {
yang-version 1.1;
namespace "urn:example:yy";
prefix yyX;
container x4 {
leaf x5 {
type string;
}
}
grouping gx {
leaf l {
type leafref {
path "../x4/x5";
}
}
}
}
和
module tt {
yang-version 1.1;
namespace "urn:example:tt";
prefix ttX;
import yy {
prefix zz;
}
container ty {
uses zz:gx;
}
}
yang -f yin tt.yang
.\yy.yang:16: 错误:在 tt.yang:11 (at .\yy.yang:14) 的 l 路径中找不到 yy:x4
- 模块 yy 确实有容器 x4 ,对吗?
- 由于分组下的leafrefs在使用它们的地方得到解决,如果我将容器x4移动到tt.yang,为什么它不起作用?