找不到模块:错误:无法在“组件”中解析“ fs”? file.json角6

时间:2018-09-08 18:00:36

标签: json typescript angular6 fs

import fs

fs = requier('fs')

fs index.d.ts I can see fs library but I can't use

Error in cmd

我写的问题要求cmd错误 另外,在安装npm的fs之后,再安装fs。

安装后或安装fs之前的相同错误

1 个答案:

答案 0 :(得分:-1)

我使用文件保护程序在Node.js与Angular 6之间进行连接

npm install file-saver --save
import { saveAs } from 'file-saver';


const jsonObject: object = {
      'City': [
        {
          'id': 1,
          'name': 'Basel',
          'founded': -200,
          'beautiful': true,
          'data': 123,
          'keywords': ['Rhine', 'River']
        },
        {
          'id': 1,
          'name': 'Zurich',
          'founded': 0,
          'beautiful': false,
          'data': 'no',
          'keywords': ['Limmat', 'Lake']
        }
      ]
    };


const blob = new Blob([JSON.stringify(jsonObject)], {type : 'application/json'});
saveAs(blob, 'abc.json');