使用blade给JS传值的时候,会自动转换链接里的特殊字符
1 |
var magnet = @foreach ($data as $list) @if ($loop->last) "{{ $list->dl_url2 }}\n" @else "{{ $list->dl_url2 }}\n" + @endif @endforeach; |
输出的magnet中的&字符会转成&
为了避免这个问题,可以使用replace方法再转回来。。。
1 |
magnet = magnet.replace(/&/g, '&'); |
There are no comments yet