小编Joã*_*nha的帖子

Firebase 存储规则 - 意外的“userId”

我正在尝试设置一个规则,在 firebase 中进行存储,只有经过身份验证的用户才能编写他的名为 avatar 的头像图像

这是firebase 文档示例:

// Grants a user access to a node matching their user ID
service firebase.storage {
  match /b/{bucket}/o {
    // Files look like: "user/<UID>/path/to/file.txt"
    match /user/{userId}/{allPaths=**} {
      allow read, write: if request.auth.uid == userId;
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

这些是我在 storage.rules 文件中定义的规则:

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth != null;
    }

    match /images/{allPaths=**} {
      allow write: if request.resource.size < 5 * 1024 * 1024
                    && request.resource.contentType.matches("image/.*") …
Run Code Online (Sandbox Code Playgroud)

firebase firebase-security reactjs firebase-storage

5
推荐指数
1
解决办法
678
查看次数

Bootstrap - 列表组项中的输入组按钮

嘿,我是引导程序的新手,但我想知道如何做某事。

我一直在尝试和寻找,但我似乎做不到。有谁知道如何获得这些:

<div class="input-group">
  <span class="input-group-btn">
    <button class="btn btn-default" type="button">Go!</button>
  </span>
  <input type="text" class="form-control">
</div>
Run Code Online (Sandbox Code Playgroud)

抱歉,我现在无法提供图像,但在引导网站上,它位于按钮插件上。

变成一个list-group-item?我想要一个类似的按钮,但位于列表组项目上。

谁能帮我?

twitter-bootstrap

3
推荐指数
1
解决办法
1万
查看次数

Ruby on Rails - 定义模型或表的复数名称

我有这个模型

class Oferta < ActiveRecord::Base
  belongs_to :entidade
  has_many :candidatos, :through => :interesses
  has_many :interesses, foreign_key: "oferta_id", dependent: :destroy
Run Code Online (Sandbox Code Playgroud)

基本上我有这个模型和模型Interesse及其复数,interesses但我认为Rails实际上是es在最后取消 并留给我Interess.现在它给了我这个错误:

uninitialized constant Oferta::Interess
Run Code Online (Sandbox Code Playgroud)

我如何定义的单数interessesinteresse?并不是interess

ruby model ruby-on-rails plural

1
推荐指数
1
解决办法
2123
查看次数