4
안녕하세요 저는 코도 바 응용 프로그램에서 도리를 사용하려고합니다. 내 environment.js 파일은 다음과 같습니다. Windows 문서 개체에 액세스하여 redirectUri를 설정할 수 없습니다. 오류가 정의되지 않은 변수를 얻는 중입니다. 어떻게 윈도우 문서 객체에 접근 할 수 있습니까? 내 .jshintrc에서ember-cli 환경의 액세스 윈도우 객체
module.exports = function (environment) {
var ENV = {
environment: environment,
baseURL: '/',
locationType: 'hash',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
APP: {
// Here you can pass flags/options to your application instance
// when it is created
},
torii: {
providers: {
'facebook-oauth2': {
apiKey: '2xxxxxxxxxx',
redirectUri: document.location.href
},
}
},
cordova: {
rebuildOnChange: false,
rebuildAsync: false,
emulate: false
}
};
는
"predef": {
"document": true,
"window": true,
"AuthENV": true
}
그래서 문서가 전 세계적으로 사용할 수 있어야합니다 생각하지만, 당신은 당신의 엠버의 대부분을 통해
window
및
document
개체에 액세스 할 수 있습니다
어떻게'window'와'document' 객체를 사용하려고합니까 - 샘플을 제공 할 수 있습니까? – bonesbrigade
redirectUri : document.location.href // 여기 – Rigel