• nvue页面注意事项


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

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

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

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

    border 不支持简写

    /* 错误 */
    .class {
        border: 1px red solid;
    }
    
    /* 正确 */
    .class {
        border- 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- 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;
            362upx;
            text-overflow:ellipsis;
            margin-left: 20upx;
        }

    
    
  • 相关阅读:
    兼容利器之X-UA-Compatible
    SQL Server之游标的基础知识
    SQL 按特定字段值排序
    NodeJS 开篇 牛刀小试
    临时表之IF-ELSE
    css中如何设置字体
    怎么做到不加班?
    C# .net中cookie值为中文时的乱码解决方法
    HTML5商城开发一 楼层滚动加载数据
    QQ浏览器X5内核问题汇总
  • 原文地址:https://www.cnblogs.com/cyhsmile/p/13925477.html
Copyright © 2020-2023  润新知