数据绑定无法再界面显示
.js
const app = getApp()
Page({
data: {
msg:“hello”,
thisweekMovie:{
name: “泰坦尼克号”,
}
})
.wxml
<view>
<text>12{{thisweekMovie.name}}</text>
<text>13{{msg}}</text>
</view>
界面只能显示12.13 无法显示hello与泰坦尼克号