为了账号安全,请及时绑定邮箱和手机立即绑定

vue 循环显示出一组字符串问题

vue 循环显示出一组字符串问题

墨色风雨 2018-10-24 21:14:12
请教一个问题,我现在要收藏一组数据,传参为一串字符串,比如我要收藏4个游戏,代号分别是5 7 12 28那么传入的参数就是字符串"5,7,12,28"比如我要收藏7个游戏,代号分别是5 6 7 8 9 12 28 那么传入的参数就是字符串"5,6,7,8,9,12,28"最少1个,最多10个//点击保存收藏keep(){    if (this.selectGame.length < 11 && this.selectGame.length > 0) {        for (let s=0;s<this.selectGame.length;s++) {          var collect = this.selectGame[s].Id + ","         }    this.$post("", { token: this.token,collect:collect}).then(res => {     )} console.log(collect)要怎么改这个代码啊
查看完整描述

1 回答

?
慕村225694

TA贡献1880条经验 获得超4个赞

for (let s=0;s<this.selectGame.length;s++) {    this.SetCollect.push(this.selectGame[s].Id)
}
let result = this.SetCollect.join(',')

result 应该就是吧


查看完整回答
反对 回复 2018-10-24
  • 1 回答
  • 0 关注
  • 1373 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信