单击按钮时保存智能表内容

时间:2017-10-19 05:27:10

标签: angular

我正在使用angular2,我想在单击保存按钮时将智能表内容添加到新的json文件中。有可能吗?

source: LocalDataSource = new LocalDataSource();
    constructor(private http : Http){
      this.http.get('http://192.168.0.100:8000/json1')
      .map(response => response.json())
      .subscribe(data =>{ this.obj = data
      this.source.load(this.obj);});
    }
    
    SaveData()
    {
     
     alert(JSON.stringify(this.Cost));
    // this is function which will active when the save button is pressed.
    }

threads are evil warning

单击“保存”按钮时,我想从服务器覆盖现有的json1文件。我有什么解决办法? 提前致谢

1 个答案:

答案 0 :(得分:0)

您需要创建一个覆盖服务器上数据的Web服务。您可以在客户端或本地存储中覆盖此数据,但为了更新服务器,您需要创建一个服务,用您的更改覆盖JSON文件。