如何使用节点 js 或 php 收集 crossrider 帖子。
这是帖子:
appAPI.ready(function($) {
// Posting data using a JSON object
appAPI.request.post({
url: 'http://example.com',
// Data to post
postData: {hello:123, name:'john'},
onSuccess: function(response) {
alert("Succeeded in posting data");
alert(response);
},
onFailure: function(httpCode) {
alert('Failed to retrieve content. (HTTP Code:' + httpCode + ')');
},
additionalRequestHeaders: {
myHeader: 'value'
},
contentType: 'application/json'
});
如何使用 nodejs 检索它?我也只是使用普通的吗
$var = $_post
在php中还是我必须使用Curl?如果我可以使用上述语法,我该如何指定 POST 的名称?使用表单我只使用 $_post["formName"] 但因为这不是表单我该怎么办?