We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如果设计成使用顶层的 main/规则名,是否能达到同样目的?
如首页例子:
{ "main": "必填, 代码从这里开始生成, 用 @规则名() 引用其他语句", "规则名": "可以编写任意 SQL 语句 @规则名2() @动态传参(a = 求给 ||| b = star)", "规则名2": { "sql": "用 #{参数名} 指定可被替换的值", "params": { "参数名": "在 params 中指定静态参数, 会优先被替换" } }, "动态传参": "#{a}鱼皮#{b}" }
可否设计成:
{ "main": "必填, 代码从这里开始生成, 用 @规则名() 引用其他语句", "规则名": "可以编写任意 SQL 语句 @规则名2() @动态传参(a = 求给 ||| b = star)", "规则名2": { "main": "用 @参数名() 指定可被替换的值", "参数名": "在 params 中指定静态参数, 会优先被替换" }, "动态传参": "#{a}鱼皮#{b}" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
如果设计成使用顶层的 main/规则名,是否能达到同样目的?
如首页例子:
可否设计成:
The text was updated successfully, but these errors were encountered: