-
Latke 快速上手指南
2018-09-26 21:33请问,访问 http://127.0.0.1:8080/articles/1537552669251.html 的时候会映射到
@RequestProcessing(value \= "/article", method \= HTTPRequestMethod.GET)
而不会映射到@RequestProcessing(value \= "/articles/*", method \= HTTPRequestMethod.GET)
这是在哪里匹配的呢? -
Latke 快速上手指南
2018-09-14 21:55我尝试创建了一张表写了一个添加的功能,结果报了这个错误。
[ERROR]-[2018-09-14 21:51:19]-[com.vseu.blog.processor.console.SentenceConsole:62]: org.b3log.latke.repository.RepositoryException: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from,oId,type,gmt_modified) values ('2018-09-14 21:51:19.952','天空本是一' at line 1 [ERROR]-[2018-09-14 21:51:29]-[org.b3log.latke.repository.jdbc.JdbcRepository:151]: Add failed com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from,oId,type,gmt_modified) values ('2018-09-14 21:51:29.937','你永远也看' at line 1 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
这个字段的顺序和我在数据库或 model 中的顺序不同,repository.json 已按照上面的 demo 写了,无法打印 sql,搞不清是哪里错了 。 求助大佬
from,oId,type,gmt\_modified) values ('2018-09-14 21:51:29.937','你永远也看'
-
添加网页播放器 + 全站 pjax
2018-09-11 22:45修复: 动态页--> 浏览动态未跳到指定锚点异常
/js/common.js 中Util
.initPjax 第一个 pjax 修改回调增加:
if (target.indexOf("#") \> -1) { var position = target.substring(target.indexOf("#"), target.length); location.href = position; }
-
请教一下,nijigen 主题如何做到点击网站内连接不刷新浏览器窗口页面。
2018-09-10 00:38$(function () { $("a").click(function () { var href=$(this).attr("href"); console.log("href = "+href); $.ajax({ url: href, success: function(data){ console.log("data = "+data); $("html").html(data); } }); return false; }) })
这样写了一下,html 方法渲染页面会有一点点延迟。。。 而且还没加进度条。。