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
数据库Mysql, 比如order by key asc,是报错的,因为key是关键字; 这时候要修改为order by key asc;尝试修改代码写成: new PageBounds(Order.formString("key.asc")) 但会报错,因为Order类中INJECTION_REGEX正则定义没有包含“`”; private static String INJECTION_REGEX = "[A-Za-z0-9_-+.]+";
key
是否可以加上解决这个问题,谢谢!
The text was updated successfully, but these errors were encountered:
这个我当时确实没有考虑到,下个版会解决一下,谢谢啦
Sorry, something went wrong.
thanks
No branches or pull requests
数据库Mysql,
比如order by key asc,是报错的,因为key是关键字;
这时候要修改为order by
key
asc;尝试修改代码写成:new PageBounds(Order.formString("
key
.asc"))但会报错,因为Order类中INJECTION_REGEX正则定义没有包含“`”;
private static String INJECTION_REGEX = "[A-Za-z0-9_-+.]+";
是否可以加上解决这个问题,谢谢!
The text was updated successfully, but these errors were encountered: