你必須很努力

Day03 - Gem-strip_attributes 介紹與應用

2021/09/16
字數統計: 246閱讀時間: 1 min

前言

當使用者輸入資料時,若不小心輸入跳脫字元 Escape Character,如 \n or \t 等時,在資料處理與儲存時,應該要過濾,避免日後使用者查不到該資料 (或其它問題),進而衍伸客服 (or Bug)

方法 1

Ruby 內建 strip方法,可以用過該方法過濾

1
2
3
4
5
6
7
$ irb

" hello\t"
# " hello\t"

" hello\t".strip
# "hello"

方法 2

使用 strip_attributes Gem,可參考此 commit

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 在想使用的 Model 中加入 (以 shop 為例)
# app/models/shop.rb
class Shop < ApplicationRecord
strip_attributes
end

---

# 寫個測試覆蓋
# spec/models/shop_spec.rb
require 'rails_helper'

RSpec.describe Shop, type: :model do
describe "#strip_attributes" do
context "note" do
subject do
shop = Shop.new(name: "TEST", email: "TEST", note: "TEST\n")
shop.valid?
shop.note
end

it { is_expected.to eq("TEST") }
end
end
end

參考資料

  1. strip (String) - APIdock
  2. strip_attributes GitHub

鐵人賽文章連結:https://ithelp.ithome.com.tw/articles/10264570
medium 文章連結:https://link.medium.com/tBNoHEh2Mjb
本文同步發布於 小菜的 Blog https://riverye.com/

備註:之後文章修改更新,以個人部落格為主

原文連結:https://riverye.com/2021/09/16/Day03-Gem-strip-attributes-介紹與應用/

發表日期:2021-09-16

更新日期:2022-09-23

CATALOG
  1. 1. 前言
  2. 2. 方法 1
  3. 3. 方法 2
  4. 4. 參考資料