中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue.js中怎么生成縱向拓撲圖

發布時間:2021-06-18 16:56:58 來源:億速云 閱讀:359 作者:Leah 欄目:大數據

今天就跟大家聊聊有關vue.js中怎么生成縱向拓撲圖,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1.前端代碼

<link href="https://magicbox.bk.tencent.com/static_api/v3/assets/bootstrap-3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link href="https://magicbox.bk.tencent.com/static_api/v3/assets/bkTopology-1.1/css/bkTopology.css" rel="stylesheet">

<script src="https://magicbox.bk.tencent.com/static_api/v3/assets/js/jquery-1.10.2.min.js"></script>
<script src="https://magicbox.bk.tencent.com/static_api/v3/assets/bootstrap-3.3.4/js/bootstrap.min.js"></script>
<script src="https://magicbox.bk.tencent.com/static_api/v3/assets/bkTopology-1.2/js/bkTopology.js"></script>

<div id="app" >
    <el-row :gutter="40">
        <el-col :span="16" :offset="4">
            <div class="none node" id="node-templates" data-container="body" data-placement="top" data-html="true" data-trigger="hover">
                <div class="node-container"><span class="node-text"></span></div>
            </div>
            <div class="bktopo-container">
                <div class="bktopo_demo" id="bktopo_demo1">
                    <div class="none node" id="node-templates" data-container="body" data-placement="top" data-html="true" data-trigger="hover">
                        <div class="node-container"><span class="node-text"></span></div>
                    </div>
                    <div class="bktopo_box" ></div>
                </div>
            </div>
        </el-col>
    </el-row>
</div>
<script type="text/javascript">
    new Vue({
        el: '#app',
        data: {
        },
        mounted() {
            this.init()
        },
        methods: {
            init() {
                axios.get(site_url + "topo/").then(res => {
                    if (res.data.result){
                        $('#bktopo_demo1 .bktopo_box').bkTopology({
                            lineWidth: 4,
                            data: res.data.data,      //配置數據源
                            drag: true,      //是否支持拖拽移動
                            lineType: [      //配置線條的類型
                                {type:'success',lineColor:'#46C37B'},
                                {type:'info',lineColor:'#4A9BFF'},
                                {type:'warning',lineColor:'#f0a63a'},
                                {type:'danger',lineColor:'#c94d3c'},
                                {type:'default',lineColor:'#aaa'}
                            ]
                        });
                        $(".node").popover();
                    }else{
                        this.$message.error('獲取拓樸數據失敗');
                    }
                },'json');
            }
        }
    })
</script>

2.后端代碼

def topo(request):
    data = {
        "nodes": [
            {
                "id": "node1", "x": 361, "y": 20, "height": 50, "width": 180,
                "text": "瀏覽器發起'www.qq.com'請求", "className": "node success"
            },
            {
                "id": "node2",
                "x": 391, "y": 100, "height": 50, "width": 120, "text": "本地hosts文件解析",
                "className": "node success"
            },
            {
                "id": "node3", "x": 301, "y": 200, "height": 50, "width": 100, "text": "客戶接入聯通網", "className": "node"
            },
            {
                "id": "node4", "x": 400, "y": 200, "height": 50, "width": 100, "text": "客戶接入移動網", "className": "node"
            },
            {
                "id": "node5", "x": 499, "y": 200, "height": 50, "width": 100, "text": "客戶接入電信網",
                "className": "node success", "title": "如果hosts匹配成功則不經過DNS服務器解析。直接使用IP訪問"
            },
            {
                "id": "node6", "x": 233, "y": 300, "height": 50, "width": 140, "text": "聯通DNS服務器", "className": "node"
            },
            {
                "id": "node7", "x": 372, "y": 300, "height": 50, "width": 140, "text": "移動DNS服務器", "className": "node"
            },
            {
                "id": "node8", "x": 511, "y": 300, "height": 50, "width": 140, "text": "電信DNS服務器",
                "className": "node success"
            },
            {
                "id": "node9", "x": 233, "y": 400, "height": 50, "width": 370,
                "text": "核心骨干交換網集群","className": "node success"
            },
            {
                "id": "node19", "x": 343, "y": 500, "height": 50, "width": 150,
                "text": "WEb服務器", "className": "node success"
            },
        ],
        "edges": [
            {"source": "node1", "sDirection": 'bottom', "target": "node2", "tDirection": 'top', "edgesType": "success"},
            {"source": "node2", "sDirection": 'bottom', "target": "node5", "tDirection": 'top', "edgesType": "success"},
            {"source": "node3", "sDirection": 'bottom', "target": "node6", "tDirection": 'top', "edgesType": "danger"},
            {"source": "node6", "sDirection": 'bottom', "target": "node9", "tDirection": 'left', "edgesType": "danger"},
            {"source": "node4", "sDirection": 'bottom', "target": "node7", "tDirection": 'top', "edgesType": "danger"},
            {"source": "node5", "sDirection": 'bottom', "target": "node8", "tDirection": 'top', "edgesType": "success"},
            {"source": "node7", "sDirection": 'bottom', "target": "node9", "tDirection": 'top', "edgesType": "danger"},
            {"source": "node8", "sDirection": 'bottom', "target": "node9", "tDirection": 'right',"edgesType": "danger"},
            {"source": "node9", "sDirection": 'bottom', "target": "node19", "tDirection": 'top', "edgesType": "success"}
        ]
    }
    return JsonResponse({"result": True, "data": data})

顯示效果

vue.js中怎么生成縱向拓撲圖

看完上述內容,你們對vue.js中怎么生成縱向拓撲圖有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旬阳县| 墨竹工卡县| 金阳县| 读书| 阿拉尔市| 呼图壁县| 佛冈县| 武鸣县| 天门市| 遂平县| 顺义区| 北碚区| 三都| 淮安市| 南投县| 正阳县| 吐鲁番市| 昆山市| 邵武市| 安康市| 东宁县| 光山县| 贵溪市| 北流市| 西充县| 福泉市| 武穴市| 睢宁县| 梅河口市| 池州市| 张家港市| 浦北县| 虎林市| 札达县| 井研县| 平和县| 苗栗县| 新安县| 富蕴县| 台州市| 武穴市|