gpt4 book ai didi

javascript - ionic 框架的动态数据

转载 作者:行者123 更新时间:2023-11-29 12:31:31 25 4
gpt4 key购买 nike

我是使用 ionic 框架的新手。我使用一个示例在 services.js 中的应用程序中显示联系人

angular.module('starter.services', []).factory('Equipements', function() {
var equipements = [{
id: 0,
name: 'Scruff McGruff'
}, {
id: 1,
name: 'G.I. Joe'
}, {
id: 2,
name: 'Miss Frizzle'
}];
return {
all: function() {
return equipements;
},
get: function(equipId) {
// Simple index lookup
return equipements[equipId];
}
}
})

但我想使用从 MySQL 数据库返回 JSON 数组的资源。

ionic 可以吗?

提前谢谢

最佳答案

是的,这是可能的。

angular.module('starter.services', []).factory('Equipements', function($http) {
var equipements = {};
$http({
method: 'GET',
url: 'http://example.com/get_all_equipments'
}).
success(function(data, status, headers, config) {
equipements = data;
});
return {
all: function() {
return equipements;
}
}
})

关于javascript - ionic 框架的动态数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27420743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com