覆盖文件内容

我有一个文件index.js,里面有一个函数


const local = function() {

    return {

      person: {

        name: "man",

        age: 24,

        city: "Mumbai",

      },

    };

  };

我有另一个文件index1.txt,我有相同的对象person:{name:'qwe'}。我需要index.js用index1.txt. 我的文件index.js应该是这样的


const local = function() {

    return {

      person: {

        name: "qwe",

        age: 24,

        city: "Mumbai",

      },

    };

  };` 

谁能帮我这个。


四季花海
浏览 65回答 2
2回答

慕姐4208626

这里的例子。它显示了如何导入以及如何合并导入的人员。进口import data from "./index1.json";const local = function() {  return {    person: {      name: "man",      age: 24,      city: "Mumbai",      ...data.person    }  };};

杨__羊羊

使用对象分配方法...const local = function() {    return {      person: {        name: "man",        age: 24,        city: "Mumbai",      },    };  };const local2 = function() {    return {      person: {        name: "qwe",        age: 24,        city: "Mumbai",      },    };  };const result= Object.assign(local, local2);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript