Android、Drupal 和DrupalCloud 或 Android-xmlrpc 教程?

发布于 2024-09-25 17:09:25 字数 135 浏览 6 评论 0 原文

有谁知道针对上述内容的好教程吗?

我需要从 Android 手机向 Drupal 发送数据。

数据以 XML 形式存储,但可以轻松转换为 JSON。

然后需要将其存储在用户的个人资料中。

谢谢

Does anyone know of a good tutorial for any of the above?

I need to send data to Drupal from and Android phone.

Data is stored in XML but can be converted to JSON easily.

Then it needs to be stored in a user's profile.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柒夜笙歌凉 2024-10-02 17:09:25

我建议您使用 Drupal Views 模块 来实现此目的。它是一个非常强大的模块,允许您在数据库上运行复杂的查询并以几乎任何格式生成输出。

以下是有关使用视图查看数据源模块生成 JSON 数据

如果视图数据源没有任何用处,那么视图奖励包模块可能是一个替代方案。

希望有帮助。

I suggest you use the Drupal Views module to achieve this. It's a very powerful module which allows you to run complex queries on your database and produce output in virtually any format.

Here's some information about using Views and Views Datasource module to produce JSON data.

If Views Datasource isn't any use, then Views Bonus Pack module may be an alternative.

Hope that helps.

笔芯 2024-10-02 17:09:25

DrupalCloud 无法工作的原因是我的 PHP 5.2.14 版本。

解决方案是将键值放在双引号中,因为这是 JSON 所期望的

bnvp[0] = new BasicNameValuePair("nid", "4"); 
bnvp[0] = new BasicNameValuePair("nid", "\"4\""); 

mPairs.add(new BasicNameValuePair("method", "system.connect")); 
mPairs.add(new BasicNameValuePair("method", "\"system.connect\"")); 

此外,请确保所有服务模块均已启用并设置了正确的权限。

THe reason DrupalCloud wasn;t working was due to my version of PHP 5.2.14.

The solution was to put the key values in double quotes as that is what JSON is expecting

bnvp[0] = new BasicNameValuePair("nid", "4"); 
bnvp[0] = new BasicNameValuePair("nid", "\"4\""); 

mPairs.add(new BasicNameValuePair("method", "system.connect")); 
mPairs.add(new BasicNameValuePair("method", "\"system.connect\"")); 

etc

Also, make sure all services modules are enable and the proper permissions are set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文