简体   繁体   中英

how can i put data from my database or website to my mobile application (im working with HTML5 and ionic)?

我想开发 ionic / HTML5 移动应用程序,我的服务器上有数据,我想在用户搜索某些内容时导入主题以将其放入我的移动应用程序中

You have to do the same thing that you do in a normal html5 application...

 angular .module('test', []) .service('DataLayerService', function($q, $http) { var self = this; self.loadData = function() { var configs = { cache: false }; configs.params = {}; return $http .get('http://myapp.com/api/v1/datalayer/...', configs) .then(function(response) { return response.data; }); }; });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM