hiscaler
hiscaler
Set you database charset is utf8mb4
@fancyecommerce You can use follow code ```go result, _:= db.Update("customer", dbx.Params{"name":json.Name, "age":json.Age}, dbx.HashExp{"id": userId}).Execute() result.RowsAffected() ```
@mjscjj 没找到办法,所以没处理了
@iyaozhen 牛!得空我测试一下看看,谢谢你!
@rustamwin If remove Authentication middleware in route, $currentUser->isGuest() alway return true.
@vjik I will try. Thank you!
@vjik Can not. GET /en/products/1 is return product 1 detail PUT /en/products/1 is update product 1 detail DELETE /en/products/1 is delete product 1 but withOptionalPatterns.optional ``` ['/en/products/[1-9]'] ``` can't not...
and has a other question. ``` ['/en/products/[1-9]{1}'] ``` can't matched /en/products/123
@rustamwin Thank you!
> @hiscaler see patterns https://github.com/yiisoft/strings/blob/master/README.md#wildcardpattern-usage Valid setting is ['/en/products/[1-9]*'] , thank you.