收藏
回答

引用组件无法显示?

使用TDesign零售电商模板开发了一个微信小程序,由于业务要求,在分类页面需要点击左侧的大类在右边展示其下的产品。

然后就修改goods-category组件下的index.wxml,增加一些组件:t-image,price...

  <view
    class="goods-category-normal-item-second-container-item"
    wx:for-key="index"
    data-item="{{item}}"
    bindtap="onGoodsClick"
  >
    <t-image src="{{item.ProductCover}}" t-class="image" />
    <view class="flex goods-category-normal-item-container-item-title">
      {{item.Title}} 
    </view>
    <view class="goods-card-price">¥{{item.Price}}
        <price
          wr-class="price-class"
          symbol="¥"
          price="123"
        />
    </view>              
  </view>

在index.json文件中引用组件

"t-image""/components/webp-image/index",
"price""/components/price/index",


程序不报错,t-image图片组件和价格文本“¥{{item.Price}}”都能正常显示,

但price组件显示不出,在控制台Wxml标签下查看页面元素,存在一个空的标签:<price></price>

不知道什么原因,求解答,谢谢!!



回答关注问题邀请回答
收藏

1 个回答

  • quietnessAndLightWeight
    quietnessAndLightWeight
    2023-12-21
    未正确引用price等吧,可以console一下看看
    
    2023-12-21
    有用 1
    回复 1
    • 老匡
      老匡
      2023-12-21
      index.json中引用了 "price": "/components/price/index"  (地址没错), 这样还不行吗?
      2023-12-21
      回复
登录 后发表内容