Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对javascript有点陌生,但我想看看是否可以在指定位置向文件中添加一行文本?即每个文件都需要在第 1 行插入相同的文本。3
有人建议“按换行符拆分,添加数据,然后重新加入”,但我不知道该怎么做。只是寻找开始的地方或指向正确的方向。
按换行符拆分:
data = data.split(/\r?\n/);
添加数据:
data = data.splice(2, 0, new_data);
重新加入:
data = data.join("\r\n");