zoukankan      html  css  js  c++  java
  • js操作json添加元素和数据的方法

    function addServerUrlToJson() {
        var json_tem = [{"name":"a","value":1}];
        
        var arr  =
         {
             "name" : "aaa",
             "value" : "bbb"
         };
         json_tem.push(arr);
         document.write(JSON.stringify(json_tem));
    } 

    结果:[{"name":"a","value":1},{"name":"aaa","value":"bbb"}]

    function addServerUrlToJson() {
        var url_path_down = "http://10.10.3.221/";
        var json_tem = {"name":"a","value":1};
        json_tem["url_path_down"] = url_path_down;
        document.write(JSON.stringify(json_tem));
    } 

    结果:{"name":"a","value":1,"url_path_down":"http://10.10.3.221/"}

  • 相关阅读:
    Vue3.0
    Vue
    Vue
    Vue3.0
    Vue
    Vue
    Vue
    Vue
    Vue3.0
    万字长文|十大基本排序,一次搞定!
  • 原文地址:https://www.cnblogs.com/cczhoufeng/p/3716485.html
Copyright © 2011-2022 走看看