vue第一次从微信跳到页面会跳到主页的解决办法(原因在于微信看到#会不认)
1.在index.php控制器中写goto方法//url 跳转,微信第一次会跳转到主页, //参数需要urlencode(),否则会出问题。 public function gotoAction(){ $url=$_GET['url']; redirect('/#/'.$url); }2.this.codeLink ='htt...
·
1.在index.php控制器中写goto方法
//url 跳转,微信第一次会跳转到主页,
//参数需要urlencode(),否则会出问题。
public function gotoAction(){
$url=$_GET['url'];
redirect('/#/'.$url);
}
2.this.codeLink ='http://yc.wzjo2o.com/#/film/getfilm?activityid='+row.ID; //原来出错时候的写法
3.this.codeLink = 'http://yc.wzjo2o.com/index/goto?url=' +encodeURI('film/getfilm?activityid='+row.ID); //解决了的写法
注释: encodeURI() 函数可把字符串作为 URI 进行编码。用于一个参数.
注释: encodeURIComponent() 用于两个或以上的参数.
//url 跳转,微信第一次会跳转到主页,
//参数需要urlencode(),否则会出问题。
public function gotoAction(){
$url=$_GET['url'];
redirect('/#/'.$url);
}
2.this.codeLink ='http://yc.wzjo2o.com/#/film/getfilm?activityid='+row.ID; //原来出错时候的写法
3.this.codeLink = 'http://yc.wzjo2o.com/index/goto?url=' +encodeURI('film/getfilm?activityid='+row.ID); //解决了的写法
注释: encodeURI() 函数可把字符串作为 URI 进行编码。用于一个参数.
注释: encodeURIComponent() 用于两个或以上的参数.
更多推荐
已为社区贡献13条内容
所有评论(0)