PhoneGap.exec
- 작성자 :
- 박*우
- 작성일 :
- 2013-09-24 21:51:17
- 조회수 :
- 976
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
EgovInterface.prototype.post = function(url, accept_type, param, successCallback) {
if(param == null)
param = {};
return PhoneGap.exec(
successCallback, //Success callback from the plugin
function(e){console.log('DeviceAPIGuide EgovInterface.post request Fail');jAlert(e);}, //Error callback from the plugin
'EgovInterfacePlugin', //Tell PhoneGap to run "EgovInterfacePlugin" Plugin
'POST', //Tell plugin, which action we want to perform
[url,accept_type,param]); //Passing list of args to the plugin
};
여기서 PhoneGap.exec() 는 cordova.js 에 정의되 있는게 맞나요?
if(param == null)
param = {};
return PhoneGap.exec(
successCallback, //Success callback from the plugin
function(e){console.log('DeviceAPIGuide EgovInterface.post request Fail');jAlert(e);}, //Error callback from the plugin
'EgovInterfacePlugin', //Tell PhoneGap to run "EgovInterfacePlugin" Plugin
'POST', //Tell plugin, which action we want to perform
[url,accept_type,param]); //Passing list of args to the plugin
};
여기서 PhoneGap.exec() 는 cordova.js 에 정의되 있는게 맞나요?
A
안녕하세요. 박성우님..
폰갭 라이브러리를 적용하여 개발을 하실 경우 구현체 형태로 제공되는 PhoneGap JavaScript 들은 cordova.js에 정의되어 있습니다.
cordova.jar 파일내에는 해당 js 파일과 연동되는 java class 등이 정의되어 있습니다.
그럼 오늘도 좋은하루 보내시기 바랍니다. 감사합니다..
폰갭 라이브러리를 적용하여 개발을 하실 경우 구현체 형태로 제공되는 PhoneGap JavaScript 들은 cordova.js에 정의되어 있습니다.
cordova.jar 파일내에는 해당 js 파일과 연동되는 java class 등이 정의되어 있습니다.
그럼 오늘도 좋은하루 보내시기 바랍니다. 감사합니다..