获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- official-account放在组件中只有第一次展示
official-account做成了一个自定义的组件public-account, <view> <official-account></official-account> </view> 在某个template1中引入了该组件, <template name="A"> <public-account></public-account> </template> index中引入A, <template is='A'></template> 多个template用wx-if切换 <template wx=if='{{active==1}}' is='A'></template> <template wx=if='{{active==2}}' is='B'></template> <template wx=if='{{active==3}}' is='C'></template> 这种情况下只有第一次切换到A时才展示official-account
2019-01-09 - import模版中的wxss和js,能动态设置路径么?
如题,在主页中import模版wxml,wxss,js,引入的模版文件路径不定,能否根据不同的参数,动态设置import的路径,来做到动态引入
2018-05-23