-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wx:key="$original.id" does not look like a valid key name (did you mean wx:key="id" ?) #4774
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
@seekcx 复现不了,提供可复现项目吧。 import Taro, { Component } from '@tarojs/taro'
import { View } from '@tarojs/components'
import A from '../../components/a/a'
export default class Detail extends Component {
renderStore() {
const stores = [{
id: 1,
name: 'a'
}, {
id: 2,
name: 'b'
}, {
id: 3,
name: 'c'
}]
return (
<View>
{
stores.map(store => {
return (
<View key={store.id} >
<A store={store}></A>
</View>
);
})
}
</View>
);
}
render () {
return (
<View>
{this.renderStore()}
</View>
)
}
} import Taro, { Component } from '@tarojs/taro'
import { View } from '@tarojs/components'
export default class A extends Component {
render () {
return (
<View>
{this.props.store.name}
</View>
)
}
} |
Hello~ 您的问题我们无法复现。如果有空的话还请拔冗提供一个简单的复现 demo,否则这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
CC @yuche |
忙忘了,之前尝试过追 original 在哪加上的,貌似不应该加上,但是没找到,我自己创建了一个空项目也没法复现。 |
Taro UI 的 AtCalendar 可以稳定复现,可能是组件引用比较复杂的问题? 编译 组件文件 node_modules/taro-ui/dist/weapp/components/calendar/controller/index.tsx
编译 组件文件 node_modules/taro-ui/dist/weapp/components/calendar/body/index.tsx
name: wx:key
code: item.$original.value
splitCode: [ 'item', '$original', 'value' ]
value splitCode: $original.value
生成 组件配置 dist/dist/taro-ui/dist/weapp/components/calendar/controller/index.json
生成 组件逻辑 dist/dist/taro-ui/dist/weapp/components/calendar/controller/index.js
生成 组件模板 dist/dist/taro-ui/dist/weapp/components/calendar/controller/index.wxml
编译 组件文件 node_modules/taro-ui/dist/weapp/components/calendar/ui/day-list/index.tsx
编译 组件文件 node_modules/taro-ui/dist/weapp/components/calendar/ui/date-list/index.tsx
name: wx:key
code: item.$original.text
splitCode: [ 'item', '$original', 'text' ]
value splitCode: $original.text
name: wx:key
code: key
splitCode: [ 'key' ]
value: key |
最小化复现了,是 自定义组件上的 // index.tsx
import Taro, { Component } from '@tarojs/taro'
import { View } from '@tarojs/components'
import ListView from './list-view'
export default class Index extends Component {
render () {
const listData = [
{
name: 'list 1',
value: [
{
value: 'list 1 value 1'
},
{
value: 'list 1 value 2'
},
]
},
{
name: 'list 2',
value: [
{
value: 'list 2 value 1'
},
{
value: 'list 2 value 2'
},
]
},
]
return (
<View className='index'>
<View>Test</View>
{
listData.map(list => (
<ListView key={list.name} list={list.value}>{list.name}</ListView>
))
}
</View>
)
}
} // list-view.tsx
import Taro, { Component } from '@tarojs/taro'
import { View } from '@tarojs/components'
export default class ListView extends Component<{ list: { value: string }[] }> {
render() {
const { list, children } = this.props
return (
<View>
<View>{children}</View>
{
list.map(item => {
<View key={item.value}>{`Value: ${item.value}`}</View>
})
}
</View>
)
}
} 编译结果 <block wx:if="{{$taroCompReady}}">
<view class="index">
<view>Test</view>
<list-view wx:key="$original.name" wx:for="{{loopArray4}}" wx:for-item="list" wx:for-index="_anonIdx2" compid="{{list.$compid__6}}">{{list.$original.name}}</list-view>
</view>
</block>
<block wx:if="{{$taroCompReady}}">
<view>
<view>
<slot></slot>
</view>
{{list.map(item => { <View wx:key={item.value}>{'Value: ' + item.value}</View>; })}}
</view>
</block> |
|
Hello~ 您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
升级taro满屏的这样子的警告,大概率是在自定义组件内部使用map会出现这样子的警告!比如下面的代码: <AtFloatLayout isOpened={isOpened} title={popTitle} onClose={onClose}>
<View className="selectList">
{list.map(item => (
<View className="listItem" key={item.id} onClick={() => onSelect(item)}>
{item.name}
</View>
))}
</View>
</AtFloatLayout> |
已经修复了吗? |
被机器人关闭了 |
我这边升级微信开发者工具后出现,但我同事的相同版本的开发者工具上并没有提示。 |
升级开发者工具后出现同样警告 |
升级开发者工具后出现同样警告,开发者工具版本v1.02.1911180 @Chen-jj |
@Chen-jj 我同事上周五不提示warning,今天也提示了。 |
@Chen-jj 同样的,升级开发者工具之后就出现了,看着很烦人。目前的版本号是:v1.02.1911180 |
遇到同样问题,一堆提醒很烦人,谁有解决方法吗? |
请问这个问题有进展吗,一堆warning看着很膈应啊,直接把warning关了不是办法吧 |
1.3.31 修复 |
更新到了 1.3.30 还存在这个问题,期待 1.3.31。 |
1.3.31依然。 |
发现 1.3.30 已经有修复代码了 e6910db taro/packages/taro-transformer-wx/src/create-html-element.ts Lines 52 to 56 in e6910db
|
但问题still there |
升级开发者工具后出现同样警告 |
更新到了 1.3.32,问题依然存在。 |
@lanxkk 删除掉 dist 文件夹,完整编译试一下 |
还是有这个问题。 |
上边提示的pull request合并到了2.x分支吧 |
抱歉我刚刚发现提交到了 2.x 分支。 |
版本1.3.32还是会有这个问题,请问修复了吗? |
1.3.33版已经修复了这个问题。 |
低版本的可以设置key的时候先用变量取到 id再赋值给key,可以避免这个问题 |
如果你用的是wxparse,可以试下全替换成wx:key="id"。:) |
这样烦人的警告的确没了 |
问题描述
所有的循环列表中,小程序控制台都报这个警告,之前没有。
实现代码:
复现步骤
[复现问题的步骤]
期望行为
消除警告
报错信息
系统信息
The text was updated successfully, but these errors were encountered: