@chunlea 是数据库结构,打漏了!不好意思!非常有用!
@chunlea 刚刚正好找到,正在看,那数据结构方面,一般怎么组织
效果不错!
@chunlea 那数据库方面如何设计?
@ruby_sky 好的,谢谢你的解答
@ruby_sky
config.public_account_class
这个不存在,我看了生成的配置文件,应该改为了config.token_model =
然后执行
rails g weixin_rails_middleware:migration
报错
Could not find generator weixin_rails_middleware:migration.
应该现在要自己在 model 里添加两个字段,而且是不是改成了这个
config.token_column = "weixin_token"
config.token_string = "token string"
@gechentuo 打错了has_many :users
我觉得应该这样设计
class Post
belongs_to :author #这是创建这篇文章的人
has_many :user #这是协作者
end
然后根据权限来控制
@Rei 谢谢 le !
@Rei 好工具,收藏了
应该没关系的吧,我用 u13 很快
我的没问题了,好似是缓存问题,我把 campo 文件清空,运行一次,然后再把代码加上,就 OK 了,神兮兮!
@Cifer_Y 这个变量本来就是属于 bootstrap-sass 的!
借地问个,我在学习@Rei的 campo,我在使用 bootstrap-sass 这个 gem 的时候一直报错没变量,有遇到这个情况?!
Undefined variable: "$gray-lighter".
我的 application.css.scss
/*
*= require font-awesome
*/
$font-size-base: 15px;
@import "bootstrap";
@import "campo";
body {
background: #eee;
}
.text-hide-overflow {
overflow: hidden;
text-overflow: ellipsis;
}
Gemfile
# Bootstrap
gem 'bootstrap-sass', '~> 3.1.1'
# Font Awesome
gem 'font-awesome-sass', '~> 4.0.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.1'
@Rei 有一些 gem 我没用过,所以用你的代码 new 了一个项目,试试这些 gem, 在 bootstrap 这个 gem,但是一直报错没变量
Undefined variable: "$gray-lighter".
我的 application.css.scss
/*
*= require font-awesome
*/
$font-size-base: 15px;
@import "bootstrap";
@import "campo";
body {
background: #eee;
}
.text-hide-overflow {
overflow: hidden;
text-overflow: ellipsis;
}
Gemfile
# Bootstrap
gem 'bootstrap-sass', '~> 3.1.1'
# Font Awesome
gem 'font-awesome-sass', '~> 4.0.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.1'
@dddd1919 哦哦!你是说在 nginx 配置了加!我看过!现在我都替换 css 解决了!
@aptx4869 如何解决?
@debugger 因为我是使用 video.js,现在打算就使用第三方的,改了 video.js 的 css 代码
@dddd1919 这些属于静态文件,所以 rails 只会在第一次编译一次就 OK,以后也不会再编译!所以戳和第一次的都一样的!我也对过服务器上面的,也没错!
@dddd1919 放在 images 下的文件,就算不加,都会全部编译吧!而实际情况,我的对于 woff 等文件,他是有编译的
@dddd1919 还是不行,这个不是只加 css 和 js 的吗
@hozaka 是的,然后在字体放在 images 下
@font-face {
font-family: 'VideoJS';
src: image-url("font/vjs.eot");
src: image-url("font/vjs.eot?#iefix") format('embedded-opentype'), image-url("font/vjs.woff") format('woff'), image-url("font/vjs.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
@hozaka 这是肯定的,而且文件名都不用自己写或处理的啊!
@ono_li 提了个 issue! 请看看!
@hhuai 已经提交
@Rei 谢了!
@as181920 说的对,这只涉及到需求