APICloud数据查询

function insertone() {//插入一条数据
var model = api.require('model');
model.config({
appid : 'A6911882660034',//从官网获取,每个运用不一样
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',//从官网获取,每个运用不一样
host : 'https://d.apicloud.com'//这个为固定值
});
model.insert({
class : 'news',//数据库名称
value : {
title : '12345'//title为列名,'12345'为赋值的列值
}
}, function(ret, err) {//回调方法,在里面执行插入数据成功后所执行的代码
if (ret) {
alert(JSON.stringify(ret));
} else {
alert(JSON.stringify(err));
}
});
// alert("666");
};

function deleteone() {//删除一条数据
var model = api.require('model');
model.config({
appid : 'A6911882660034',
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',
host : 'https://d.apicloud.com'
});
model.deleteById({
class : 'news',
id : '576792f7ae808c1268950053'
}, function(ret, err) {
if (ret) {
alert(JSON.stringify(ret));
} else {
alert(JSON.stringify(err));
}
});
}

function updateone() {//更新一条数据
var model = api.require('model');
model.config({
appid : 'A6911882660034',
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',
host : 'https://d.apicloud.com'
});
model.updateById({
class : 'news',
id : '57669336456dbae84b04ab3a',
value : {
title : 'titletest'
}
}, function(ret, err) {
if (ret) {
alert(JSON.stringify(ret));
} else {
alert(JSON.stringify(err));
}
});
}

function findone() {//找到一条数据
var model = api.require('model');
model.config({
appid : 'A6911882660034',
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',
host : 'https://d.apicloud.com'
});
model.findById({
class : 'news',
id : '57669336456dbae84b04ab3a'
}, function(ret, err) {
if (ret) {
alert(JSON.stringify(ret));
} else {
alert(JSON.stringify(err));
}
});
}

function findmyall() {//找到表全部数据
var model = api.require('model');
var query = api.require('query');
model.config({
appid : 'A6911882660034',
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',
host : 'https://d.apicloud.com'
});
query.createQuery({
}, function(ret, err) {
//coding...
if (ret && ret.qid) {
model.findAll({
class : 'news',
qid : ret.qid
}, function(ret, err) {
//coding...
//alert(JSON.stringify(ret));
for (var i = 0; i < ret.length; i++) {
alert(JSON.stringify(ret[i]));
}
});
}
});
}

function sumnum() {//查询表数据行数
var model = api.require('model');
var query = api.require('query');
model.config({
appid : 'A6911882660034',
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',
host : 'https://d.apicloud.com'
});
query.createQuery({
}, function(ret, err) {
//coding...
if (ret && ret.qid) {
model.count({
class : "news",
qid : ret.qid
}, function(ret, err) {
if (ret) {
alert(JSON.stringify(ret));
} else {
alert(JSON.stringify(err));
}
});
}
});

}

function existtable() {//查询表是否存在
var model = api.require('model');
model.config({
appid : 'A6911882660034',
appKey : '02476E15-2471-6B32-341C-FE0196AFCDD0',
host : 'https://d.apicloud.com'
});
model.exist({
class : "news"
}, function(ret, err) {
if (ret) {
alert(JSON.stringify(ret));
} else {
alert(JSON.stringify(err));
}
});
}

你可能感兴趣的:(APICloud数据查询)