wx:for="{{tips}}"

Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead.
这种形式需要怎么改呢

给你个例子参考吧,你这个看起来像在微信小程序的wxml文件中显示一组列表。

<block wx:for="{{ messageList }}" wx:key="index" wx:for-item="msg">
      <view class="message {{ msg.type }}">
        <view class="message-text">{{msg.content}}</view>
        <view class="interval"></view>
        <view class="message-{{ msg.type }}-time">{{ msg.time }}</view>
      </view>
      <view class="interval"></view>
</block>

我这边 messageList是个数组,由后端传给前端页面。通过for循环,会把所有的message在页面上显示出来。

这行代码告诉我们,现在在进行for循环,每次的message值被存储在变量msg里,而msg的结构在后台类似:

{
      type: 'send', 
      role: 'user',
      content: ‘Hello world’, 
      time: formatTime.formatTime()
 }

你大概参考下吧,自己看懂了那就会变成你自己的。