在Angularjs我們能否使用$ HTTP服務與方法 「JSONP」
$http({
method: 'JSONP',
url: 'http://plv.localhost/register?callback=JSON_CALLBACK',
data : { name : 'some name' }
}).success(function(data, status , header, config){
console.log('success');
}).error(function(data, status , header, config){
console.log('error');
});
是的,你可以用'JSONP'。什麼是錯誤等?你沒有給我們太多的信息。 – SamV
@SamV我想傳遞數據:{name:'some name'}}在服務器端(PHP)我可以訪問$ _POST ['name'] –