Android、Drupal 和DrupalCloud 或 Android-xmlrpc 教程?
有谁知道针对上述内容的好教程吗?
我需要从 Android 手机向 Drupal 发送数据。
数据以 XML 形式存储,但可以轻松转换为 JSON。
然后需要将其存储在用户的个人资料中。
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您使用 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.
DrupalCloud 无法工作的原因是我的 PHP 5.2.14 版本。
解决方案是将键值放在双引号中,因为这是 JSON 所期望的
等
此外,请确保所有服务模块均已启用并设置了正确的权限。
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
etc
Also, make sure all services modules are enable and the proper permissions are set.