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

I am creating a Vue starter kit app for a platform, and it will use a standard directory structure for

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
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745674420a4639599.html

相关推荐

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

    I am creating a Vue starter kit app for a platform, and it will use a standard directory structure for

    5小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信