nvue页面注意事项

1.nvue 页面只能使用 flex 布局

2.布局不能使用百分比、没有媒体查询。

3.选择器仅支持class 选择器

/* 错误 */
#id {}
.a .b .c {}
.a > .b {}

/* 正确 */
.class {}

border 不支持简写

/* 错误 */
.class {
    border: 1px red solid;
}

/* 正确 */
.class {
    border-width: 1px;
    border-style: solid;
    border-color: red;
}

background 不支持简写

/* 错误 */
.class {
    background: red;
}

/* 正确 */
.class {
    background-color: red;
}
/* 错误 */
/*  控制台警告:
WARNING: `border` is not a standard property name (may not be supported)  
WARNING: `-webkit-transform` is not a standard property name (may not be supported)
*/
.class {
    border: 1px red solid;
  -webkit-transform: scaleY(.5);
}

/* 正确 */
.class {
    border-width: 1px;
    border-style: solid;
    border-color: red;
  /* #ifndef APP-PLUS-NVUE */
  -webkit-transform: scaleY(.5);
  /* #endif*/
}
4.nvue 页面控制显隐只可以使用v-if不可以使用v-show   (控制元素显示隐藏,v-if和v-else结合使用,写两个v-if会造成样式错乱等)
5.h5正常app异常body的元素选择器请改为page,同样,div和ul和li等改为view、span和font改为text、a改为navigator、img改为image...
6.uni-app开发中遇到的问题 https://www.cnblogs.com/nanyang520/p/11758187.html
7.
uniapp报错 uniapp reportJSException >>>> exception function:GraphicActionAddElement, exception....
可能的问题:text标签中加了其他的标签
                                            <text class="recommend-info">
                                                <text class="media-author">{{item.username}}</text>
                                                <text class="media-author recommend-date"> &nbsp;&nbsp;{{time()}}</text>
                                            </text>

我这写的就报错uniapp reportJSException >>>> exception function:GraphicActionAddElement, exception....   然后改了

<view class="recommend-info">
                                                <text class="media-author">{{item.username}}</text>
                                                <text class="media-author recommend-date"> &nbsp;&nbsp;{{time()}}</text>
                                            </view>

这样就可以了。

提示:在写nvue页面要非常注重规范呢

8.nvue中内容超过用省略号( 前提要设置text的宽度

.info-text-first{
        lines: 1;
        width:362upx;
        text-overflow:ellipsis;
        margin-left: 20upx;
    }

 

 


posted @ 2020-11-04 13:34  凹凸曼啦  阅读(3692)  评论(0编辑  收藏  举报