我有一个文件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",
},
};
};`
谁能帮我这个。
慕姐4208626
杨__羊羊
相关分类