有没有办法从用 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 模块上有很多关系。有人可以帮我解决这个问题吗?