运行 asdoc 时无法在 actionscript 文件中显示注释。这是一个已知的错误吗?
[Bindable]
/** test comment */
public var currentSearchTextValue:String;
在生成的文档中没有显示任何内容......我做错了吗?
运行 asdoc 时无法在 actionscript 文件中显示注释。这是一个已知的错误吗?
[Bindable]
/** test comment */
public var currentSearchTextValue:String;
在生成的文档中没有显示任何内容......我做错了吗?
虽然我在这里没有发现任何问题,但我会遵循 ASDOC 最佳实践——按照此处的建议将注释与前面的星号放在单独的一行中,看看是否可行。
[Bindable]
/**
* Test comment
*/
public var currentSearchTextValue:String;
[Bindable]
实际上会生成包装属性的代码,因此它可能是不可能的。尝试[Bindable]
在您发表评论后继续前进,但恐怕您可能会不走运。
我有同样的问题,并在这里发布了一个详细的问题。还没有答案。
一种解决方法是使用事件名称和 Bindable 标签
[Bindable("someEvent")]
/*
* asdoc comment
* */
public var currentSearchTextValue:String;
但是这个 wud 需要你手动调度“someEvent”来获得绑定工作。所以你可能想用它来单独生成 asdoc,然后再把它改回旧版本。