起步
安装
# golang
go get github.com/casbin/casbin/v2
# node.js
npm install casbin --save实例化
// go
import "github.com/casbin/casbin/v2"
e, err := casbin.NewEnforcer("path/to/model.conf", "path/to/policy.csv")// node.js
import { newEnforcer } from 'casbin';
const e = await newEnforcer('path/to/model.conf', 'path/to/policy.csv');支持的Models
最后更新于