Fluxible Plugin RoutrFluxible 路由插件

联合创作 · 2023-09-22 07:01

Fluxible Plugin Routr 是给 Fluxible 应用提供路由方式的插件。

示例代码:

var Fluxible = require('fluxible');
var routrPlugin = require('fluxible-plugin-routr');
var app = new Fluxible();var pluginInstance = routrPlugin({
    routes: {
        user: {
            path: '/user/:id',
            method: 'get',            
// flux-router-component uses this action when the route is matched
            action: function (actionContext, payload, done) {               
 // ...
                done();
            }
        }
    }
});

app.plug(pluginInstance);
浏览 8
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报