$.ajax({	url: 'http://localhost:8075/api/Login/RecSapdn',	type: 'POST', //方法分GET和POST,根据需要写	data: {		name: 'a',		password: '1'	},	success: function(data) {		alert(data.result);	},	error: function(e) {		window.alert('失败了' + e.msg);	}})用这个  已经成功调取到api了   为什么不会进入success 呢?