Angularjs 오류가 발생한 작은 구덩이
Error: ng:areq
Bad Argument Argument 'fn' is not%20a%20function%2C%20got%20undefined
Description
AngularJS often asserts that certain values will be present and truthy using a helper function. If the assertion fails, this error is thrown. To fix this problem, make sure that the value the assertion expects is defined and truthy.
$scope.queryByIdOrMesg=function (){
// var userWantResJosn=angular.toJson($scope.userWantRes,true);
console.log(userWantResJosn);
$http.post(settings.apiProxy + 'api/cboard/voip/getFlowLogs',
{message:$scope.userWantRes}).success(function (response,status,config,headers){
$scope.logs = response;
console.log("status:"+status+" config:"+config+" headers:"+headers);
}).error(function (err) {
console.log(err);
})
나는post 요청을 할 때ng:areq 오류를 보고했고 끊임없이 바디를 고친 후에야 매개 변수를 적게 보냈다는 것을 발견했다var flowId = $stateParams.flowId;
즉post의body에 페이지가 없는 점프 후 전달된flowId로 인해 요청이 실패했습니다. 고치면flowId:flowId를postbody에 추가하는 것입니다
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSON
JSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다.
그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다.
저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
Argument 'fn' is not%20a%20function%2C%20got%20undefined
$scope.queryByIdOrMesg=function (){
// var userWantResJosn=angular.toJson($scope.userWantRes,true);
console.log(userWantResJosn);
$http.post(settings.apiProxy + 'api/cboard/voip/getFlowLogs',
{message:$scope.userWantRes}).success(function (response,status,config,headers){
$scope.logs = response;
console.log("status:"+status+" config:"+config+" headers:"+headers);
}).error(function (err) {
console.log(err);
})
var flowId = $stateParams.flowId;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.