在对象中有一个 url,但是却发现编码问题很恶心,我想设置一下,对象中 url 的 encoind 求助大神们
View 里边可以用 u('/aaa?a=/a/b/c') Controller 里边好像可以用 URI::encode 或者 URI.escape? View 里边也可以用 URI::encode
#6 楼 @miclle 哦哦 对不起啊 我太着急了。"http://comiclover-comicimages.stor.sinaapp.com/ipadVolumCovers/+self.comic_cover" 我是这么写的 在 model 中 我想把后面 self.comic_cover 编码 求助
你是不是要做字符串拼接呢?
"http://comiclover-comicimages.stor.sinaapp.com/ipadVolumCovers/#{self.comic_cover}"
"http://comiclover-comicimages.stor.sinaapp.com/ipadVolumCovers/#{URI::escape(self.comic_cover)}"