有没有办法从本地移动应用程序发布数据,然后通过 Drupal 网站保存数据?
Posted
技术标签:
【中文标题】有没有办法从本地移动应用程序发布数据,然后通过 Drupal 网站保存数据?【英文标题】:Is there a way on how to post data from a native mobile application then save the data through the Drupal Website? 【发布时间】:2015-03-24 09:46:12 【问题描述】:有没有办法从用 html、CSS 和 JQuery 编写的本机移动应用程序发布数据,然后通过 Drupal 网站(特别是在 Webform 模块上)保存数据?
假设在我的原生移动应用程序中,我有这组代码:
[mymobile/json-inquiry.js]
var inquiry = 'inq_name' : fullname, 'inq_email' : emailadd, 'inq_number': contactnum, 'inq_message' : msg ;
$.ajax(
url: 'http://local.mywebsite.com/inq/',
type : 'post',
data : inquiry,
success : function(data)
console.log(data);
);
);
,
$items['inq'] = array(
'title' => 'Test1',
'description' => 'Getting the Reservation data from the mobile app to here',
'page callback' => array('test_inquiry1'),
'page arguments' => array(1),
'access callback' => TRUE,
'access arguments' => array(1),
'type' => MENU_CALLBACK
);
然后我想将以下数据输入到 Webforms 的表格中,特别是在 webform_submitted_data
上。我很难解决这类问题,因为 Webform 模块上有很多关系。有人可以帮我解决这个问题吗?
【问题讨论】:
【参考方案1】:Services 和 Webform Service 或 RESTful Web Services 模块可以帮助您
【讨论】:
以上是关于有没有办法从本地移动应用程序发布数据,然后通过 Drupal 网站保存数据?的主要内容,如果未能解决你的问题,请参考以下文章