我正在为我的项目使用 angular.js,并且我编写了一项服务,其中我返回了患者详细信息,但在控制器中,我没有通过 patientinfo() 函数调用获得此返回值。这是我的服务代码:
app.service('PatientDetailService', function() {
this.patientinfo = function(){
$.ajax({
dataType: "json",
url: "json/client_info.json",
type: 'get',
error: function(patientdetail){ alert("error");},
success: function(patientdetail){
alert("successs");
console.log(patientdetail);
return patientdetail;
}
});
}
});