您好,祝新年快乐!
我的问题可能看起来有点愚蠢,但我真的会从知道哪个dom元素(或ui元素,如果你这样选择)调用特定的数据源中获益。
让我举例说明。
假设我有以下ui元素:
<input data-ident="input1" data-bind="source: aFunction" type="text" />
<input data-ident="input2" data-bind="source: aFunction" type="text" />
然后,在视图控制器中我有这个功能:
aFunction: function(propertyOf:uiElement){
switch(propertyOf.data(ident)){
case x:....
}
// return dataSource code...
}
这在剑道是可行的吗?我可以读取当前ui元素的控制器元素,它从我的函数中获取它的来源吗?
非常感谢和任何帮助非常感谢!