Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在Deployd with Phonegap应用程序中创建新用户?
浏览器中的POST请求/users有效,但在 Phonegap 应用程序中它返回错误:
POST
/users
[phonegap] [console.log] Cannot POST /users
原来你必须预先下载你的 dpd.js 从
http://yourserver.com/dpd.js
并在代码中更改以下内容:
var root = "http://yourserver.com/"
并在您的 HTML 中使用它:
<script type="text/javascript" charset="utf-8" src="js/dpd.js"></script>