diff --git a/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm b/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm index ff995a46d0..b5c945fce7 100644 --- a/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm +++ b/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXComponent+DataBinding.mm @@ -590,7 +590,7 @@ - (void)_componentInfoOfRef:(WXComponent *)component subInfo:(NSMutableDictionar NSIndexPath *indexPath = data[@"item"][@"indexPath"]; NSUInteger position = [indexPath indexAtPosition:1]; NSString *virtalElementInfo = [NSString stringWithFormat:@"%@@%lu",component.ref,position]; - NSDictionary *refInfo = @{@"attrs":component.attributes,@"type":component->_type,@"vRef":virtalElementInfo,@"[[VirtualElement]]":@"true"}; + NSDictionary *refInfo = @{@"attrs":component.attributes,@"type":component->_type,@"ref":virtalElementInfo,@"[[VirtualElement]]":@"true"}; if (subInfo[component.attributes[@"ref"]]) { [subInfo[component.attributes[@"ref"]] addObject:refInfo]; } diff --git a/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm b/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm index 25d848dd5a..6c3fb0a884 100644 --- a/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm +++ b/ios/sdk/WeexSDK/Sources/Component/RecycleList/WXRecycleListComponent.mm @@ -435,7 +435,7 @@ - (NSDictionary *)_closestComponentForCSSSelector:(NSString *)cssSelector compon { WXComponent *supercomponent = component.supercomponent; if ([self _parseCssSelector:cssSelector component:supercomponent]) { - NSDictionary *info = @{@"attrs":supercomponent.attributes,@"type":supercomponent->_type,@"vRef":supercomponent.ref}; + NSDictionary *info = @{@"attrs":supercomponent.attributes,@"type":supercomponent->_type,@"ref":supercomponent.ref}; return info; } else