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