企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 选择角色 1\.首先,需要使用requireJs加载Fast模块 ``` define(['jquery', 'bootstrap', 'backend', 'table', 'fast'], function ($, undefined, Backend, Table, Fast) {}); ``` 3\.在DOM对象click事件调用角色选择弹窗插件 ``` $('#select-role').click(function () { Fast.api.open('/admin/plugin/selectRole', '选择角色', { area: ['400px', '400px'], callback: function (data) { //选择角色后的回调处理函数 } }); }) ``` 回调函数中返回的data的数据格式为: ``` [ {"id":"1","name":"管理员"}, {"id":"角色ID","name":"角色名称"} ] ``` 如果没有选择任何角色点击确认按钮返回时,将返回1个空数组\[\],如果您在开发的过程为远程调用本插件,则将弹窗的URL地址更改为 <http://fast.n3.cn/admin/plugin/selectRole>