美文网首页
日更(五十)-react-JsBarcode

日更(五十)-react-JsBarcode

作者: Jlanglang | 来源:发表于2019-02-19 23:26 被阅读0次

    瞎扯

    百度,google搜了一下,发现很多教怎么用的,就是没有封装组件的.

    实际这个东西,用起来还是很简单的.

    今天正好封装了个组件.

    今天算是写react的第三个月了.react还是比较好上手的.

    JsBarcode

    几种应用:

    image.png

    这种是JQuery的.明显不是想要的,略过


    image.png

    这种用classname找的方法.好像也不行.


    image.png

    这种有点不明白.看起来也不是想要的.


    image.png

    最后这个才像是需要的.

    封装

    import React, { Component } from 'react';
    import * as Barcode from 'jsbarcode';
    
    /**
     * 简单生成条形码
     */
    class SimpleBarcode extends Component {
        componentDidMount() {
            this.createBarcode();
        }
    
        componentWillReceiveProps(nextProps) {
            if (this.props !== nextProps) {
                this.createBarcode();
            }
        }
    
        createBarcode = () => {
            if (!this.barcode) return;
            const {
                width = 1, height = 35, margin = 0, label, displayValue=true
            } = this.props;
            if (!label) {
                return;
            }
            Barcode(this.barcode, label, {
                displayValue, //是否在下面显示具体文字
                width, //线的宽度系数,1是正常,2是两倍,数越大越粗.
                height,// 条形码高度
                margin,
            });
        };
    
        render() {
            const { labelClassName, label, className , displayValue=true} = this.props;
            return (
                <div className={className}>
                    <svg
                        ref={(ref) => {
                            this.barcode = ref;
                        }}
                    />
                    {displayValue?null:<p className={labelClassName}>{label}</p>}
                </div>
            );
        }
    }
    
    export default SimpleBarcode;
    
    

    交流群:493180098,这是个很少吹水,交流学习的群.
    APP开发维护咨询群 : 492685472 ,承接APP迭代.开发维护.咨询业务,付费快速解决问题.

    相关文章

      网友评论

          本文标题:日更(五十)-react-JsBarcode

          本文链接:https://www.haomeiwen.com/subject/qcvqyqtx.html