Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 WinJS 中使用默认数据绑定时,如何绑定到“当前项”而不是指定要绑定的属性。我想到了“。” 在绑定到当前项目的 XAML 中。
您可以在绑定表达式的右侧使用“this”:
data-win-bind="innerText: this myInitializer"
但是,如果您这样做,您应该编写一个自定义初始化程序,该初始化程序知道如何将“this”拆分为正确转换为字符串的内容。