$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>javascript - Dynamic import of routes into Vue router - Stack Overflow|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - Dynamic import of routes into Vue router - Stack Overflow

matteradmin18PV0评论

I am creating a Vue starter kit app for a platform, and it will use a standard directory structure for creating all of the items needed for a resource (.vue files, routes, Vuex store modules, etc). I would like to take advantage of this known structure to dynamically load router path objects so the user doesn't have to manually add routes to the router index file.

For example, here's a sample directory structure:

/src
  |
  ---resources
         |
         -------user
                  |
                   ---User.vue
                   ---routes.js
                   ---store.js
                event
                  |
                   ---Event.vue
                   ---routes.js
                   ---store.js
                job
                  |
                   ---Job.vue
                   ---routes.js
                   ---store.js 

The inside of a routes.js file looks like this:

import Event from '@/resources/event/Event'

export default [
  {
    path: '/events',
    name: 'event',
    ponent: Event
  },
];

To do this manually in a standard router file (router.js or router/index/js), you would do something like this:

import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';
import eventRoutes from '@/resources/event/routes.js';
import userRoutes from '@/resources/user/routes.js';
import jobRoutes from '@/resources/job/routes.js';

Vue.use(Router);

let baseRoutes = [
  {
    path: '/',
    name: 'home',
    ponent: Home
  },
  {
    path: '/login',
    name: 'auth',
    ponent: Auth
  },
];

const routes = baseRoutes.concat(shiftCalendarRoutes)
  .concat(eventRoutes)
  .concat(userRoutes)
  .concat(jobRoutes);
export default new Router({
    mode: 'history',
    routes,
})

What I would really like to do is this:

import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';

Vue.use(Router);

let routes = [
  {
    path: '/',
    name: 'home',
    ponent: Home
  },
  {
    path: '/login',
    name: 'auth',
    ponent: Auth
  },
];

function loadRoutes() {
  const routes = require.context('@/resources', true, /routes.js$/i);
  routes.keys().forEach((key) => {
    const path = '@/resources/' + key.substring(2);
    // Dynamically import file using import statement
    import something from path;
    // Add imported default object to routes object.
  });
  return routesList;
}

export default new Router({
    mode: 'history',
    routes,
})

The problem I'm running into is the actual import. When I try something like

routeItems.keys().forEach((key) => {
    // routesList.push('@/resources/' + key.substring(2));
    const path = '@/resources/' + key.substring(2);
    const routeModule = import(path).default();
  });

I get a Critical dependency: the request of a dependency is an expression webpack error. I've tried other versions of import without any luck.

Is it possible to do what I'm trying to do with dynamic importing?

I am creating a Vue starter kit app for a platform, and it will use a standard directory structure for creating all of the items needed for a resource (.vue files, routes, Vuex store modules, etc). I would like to take advantage of this known structure to dynamically load router path objects so the user doesn't have to manually add routes to the router index file.

For example, here's a sample directory structure:

/src
  |
  ---resources
         |
         -------user
                  |
                   ---User.vue
                   ---routes.js
                   ---store.js
                event
                  |
                   ---Event.vue
                   ---routes.js
                   ---store.js
                job
                  |
                   ---Job.vue
                   ---routes.js
                   ---store.js 

The inside of a routes.js file looks like this:

import Event from '@/resources/event/Event'

export default [
  {
    path: '/events',
    name: 'event',
    ponent: Event
  },
];

To do this manually in a standard router file (router.js or router/index/js), you would do something like this:

import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';
import eventRoutes from '@/resources/event/routes.js';
import userRoutes from '@/resources/user/routes.js';
import jobRoutes from '@/resources/job/routes.js';

Vue.use(Router);

let baseRoutes = [
  {
    path: '/',
    name: 'home',
    ponent: Home
  },
  {
    path: '/login',
    name: 'auth',
    ponent: Auth
  },
];

const routes = baseRoutes.concat(shiftCalendarRoutes)
  .concat(eventRoutes)
  .concat(userRoutes)
  .concat(jobRoutes);
export default new Router({
    mode: 'history',
    routes,
})

What I would really like to do is this:

import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';

Vue.use(Router);

let routes = [
  {
    path: '/',
    name: 'home',
    ponent: Home
  },
  {
    path: '/login',
    name: 'auth',
    ponent: Auth
  },
];

function loadRoutes() {
  const routes = require.context('@/resources', true, /routes.js$/i);
  routes.keys().forEach((key) => {
    const path = '@/resources/' + key.substring(2);
    // Dynamically import file using import statement
    import something from path;
    // Add imported default object to routes object.
  });
  return routesList;
}

export default new Router({
    mode: 'history',
    routes,
})

The problem I'm running into is the actual import. When I try something like

routeItems.keys().forEach((key) => {
    // routesList.push('@/resources/' + key.substring(2));
    const path = '@/resources/' + key.substring(2);
    const routeModule = import(path).default();
  });

I get a Critical dependency: the request of a dependency is an expression webpack error. I've tried other versions of import without any luck.

Is it possible to do what I'm trying to do with dynamic importing?

Share Improve this question asked Apr 16, 2020 at 20:03 wonder95wonder95 4,3158 gold badges50 silver badges82 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

It doesn't really make sense to use import() together with require.context(), since the latter already provides the import. Given your use case, you only need require.context().

require.context() returns a context module, which exports a keys function that returns an array of all possible requests (i.e., the matching paths), each of which could be passed to the context itself (which invokes its resolve function) to import the corresponding module:

function loadRoutes() {
  const context = require.context('@/resources', true, /routes.js$/i)
  return context.keys()
    .map(context)         // import module
    .map(m => m.default)  // get `default` export from each resolved module
}
Post a comment

comment list (0)

  1. No comments so far