我尝试离子原生http和角度http
我的代码
var link = 'https://mydomain.tech/param.php';
var myData = JSON.stringify({username: 555});
this.http.post(link, myData).subscribe(data => {
console.log(data);
}, error => {
console.log("Oooops!");
});
离子原生
this.http.post('https://mydomain.domain',
{
cardToken : token,
amount, 500
},
{
headers: { 'Content-Type': 'application/json' }
})
.then(data => {
console.log(data.data);
}).catch(error => {
console.log(error.status);
});
两者都在Android上工作,但ios发布值不发送
任何建议?