Results 16 comments of QC

For example: I got a json from `https://api.github.com/repos/ChimeraCoder/gojson` ```json { "id": 7344683, "name": "gojson", "full_name": "ChimeraCoder/gojson", "owner": { "login": "ChimeraCoder", "id": 376414, "avatar_url": "https://avatars0.githubusercontent.com/u/376414?v=4", "gravatar_id": "", "url": "https://api.github.com/users/ChimeraCoder", "html_url": "https://github.com/ChimeraCoder",...

I will upgrade to sprig V3 for next major version.

This will bring to backward compatibility problems, need update in next major version release.

能提供一下 launch4j 的简单用法吗?好方便我进行一下测试。

建议你可以进行如下的尝试: 1. 单独使用 mvn assembly 生产的 jar (java -jar assistant-0.1.0-jar-with-dependencies.jar) 运行看看 2. 用 `maven-shade-plugin` 打包试试 3. 修改配置 `true` 参考:http://stackoverflow.com/questions/6060560/trying-to-integrate-launch4j-in-a-maven-project-using-alakai-plugin

能提供一下用的 `jetbrick-template` 和 `jetbrick-commons` 版本号吗? 如果使用的不是最新版,可以尝试升级到最新版试试。 > `jetbrick-commons` 在 `2.1.1` 版本里面修复过一个 `ClasspathResource` 加载失败的问题

我用下面的 pom.xml 打包 launch4j,没有成功,好像是 launch4j 不支持 64bit? http://stackoverflow.com/questions/8142162/launch4j-maven-plugin-will-not-work-on-64-bit-linux-machine Linux & Mac 都没有成功。不知道你有什么办法? Linux ``` [ERROR] net.sf.launch4j.BuilderException: net.sf.launch4j.ExecException: java.io.IOException: Cannot run program "/root/.m2/repository/org/bluestemsoftware/open/maven/plugin/launch4j-plugin/1.5.0.0/launch4j-plugin-1.5.0.0-workdir-linux/bin/windres": error=2, No such file or directory at net.sf.launch4j.Builder.build(Builder.java:145)...

说明你mysql里面保存是escape过的string.

目前不支持 I18N,可以实现自己的 ResourceLoader 来支持 I18N

你的代码中有一段如下: ``` js angular.element(document.body).append(html) ``` 这种方式加入的 html 没有经过 angular 处理,所以正确无法识别里面的 ng directive. 你需要用 `$compile` 对 html进行编译,连接才行, 然后在加入到 dom tree。 ``` js var html = ''; var dom = angular.element(document.body); var...