需要作为(app.vue)main.js文件的一部分或之前进行api调用。我没有使用节点js,而是试图保持该站点的静态。有没有办法从(app.vue)main.js文件中从API中提取(2)个值?我想在运行时而不是在构建过程中提取它们。
我尝试在插件中执行此操作,但是该插件的作用域似乎仅限于vue而不是main.js文件,因此我不确定如何从插件获取值。
我想调用主站点URL,当main.js文件执行时,我希望它进行API调用以填充需要在下面的Vue.use代码内设置的(2)变量。
我需要填充的值是客户端/租户
Vue.use(Adal, {
// This config gets passed along to Adal, so all settings available to adal can be used here.
config: {
// 'common' (multi-tenant gateway) or Azure AD Tenant ID
tenant: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
// Application ID
client: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
// Host URI
redirectUri: 'http://localhost:8080',
cacheLocation: 'localStorage'
}
这可能吗?