和视频一样的代码postId要改为小写postid才能跑通,为什么我会有这样的问题
来源:19-1 从文章列表跳转到新闻详情页面(组件自定义属性及获取属性)
amazingmax
2019-09-09
我照着老师的一样的写,postId
此处的字母I为大写
<view catchtap='onPostTap' data-postId='{{item.postId}}'>
<template is='postItem' data='{{...item}}' />
</view>
js代码:
onPostTap: function (event) {
var postId = event.currentTarget.dataset.postId;
console.log(postId)
},
然后在js那里如果我照着视频也写入大写postId,代码就会报错
我把I改为小写程序又可以跑了,大家有我这样的问题吗?
写回答
1回答
-
7七月
2019-09-09
这个讲过了,就是这么规定的,属性没有大写
032019-09-24
相似问题