博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php保存一个json文件,求一个PHP页面实现修改保存json文件
阅读量:5741 次
发布时间:2019-06-18

本文共 1108 字,大约阅读时间需要 3 分钟。

[HTML] 纯文本查看 复制代码

编号ser_ipftp_ab_pathftp_ac_pathrestart操作

{
{index+1}}{
{item.ser_ip}}{
{item.ftp_ab_path}}{
{item.ftp_ac_path}}{
{item.restart}}移除修改添加完成

var vm =new Vue({

el:'#table',

data:{

item:{ser_ip:'',ftp_ab_path:'',ftp_ac_path:'',restart:''},

list: [],

bEditing: false,

},

methods:{

getJson:function(){

$.ajax({

type: "GET",

url: "db.json",

dataType: "json",

success: function (data) {

console.info(data);

if(data){

vm.list = JSON.parse(data);

}

}

});

},

saveJson:function(){

$.ajax({

type: "POST",

url: "putjson.php",

contentType: "application/json; charset=utf-8",

data: JSON.stringify(this.list),

dataType: "json",

success: function (message) {

if (message > 0) {

alert("提交数据Success!");

}

},

error: function (message) {

alert("提交数据失败!");

}

});

},

insert:function(){

var aItem = Object.assign({}, this.item);

this.list.push(aItem)

this.saveJson();

},

remove:function(index){

this.list.splice(index,1)

this.saveJson();

},

edit:function(index){

this.item = this.list[index];

//this.set()

this.bEditing = true;

},

eidtOver:function(index){

this.bEditing = false;

this.saveJson();

}

}

});

vm.getJson();

转载地址:http://qbnzx.baihongyu.com/

你可能感兴趣的文章
Linux-Centos启动流程
查看>>
php 设计模式
查看>>
后端技术精选 - 收藏集 - 掘金
查看>>
Laravel 服务容器
查看>>
mac安装kubernetes并运行echoserver
查看>>
多页架构的前后端分离方案(webpack+express)
查看>>
算法(第4版) Chapter 1
查看>>
前端技术选型的遗憾和经验教训
查看>>
“亲切照料”下的领域驱动设计
查看>>
SRE工程师到底是做什么的?
查看>>
解读:Red Hat为什么收购Ansible
查看>>
Ossim下的安全合规管理
查看>>
DelphiWebMVC框架下BPL热部署实现
查看>>
C++与MySQL的冲突
查看>>
siki学习之观察者模式笔记
查看>>
单元测试
查看>>
spring.net 继承
查看>>
ES6:模块简单解释
查看>>
JavaScript indexOf() 方法
查看>>
用Bootstrap写一份简历
查看>>