如何在AnguarJs的swal Alert框中打印数组?

时间:2017-12-17 07:51:52

标签: javascript angularjs



HttpHeaders




我必须在swal警告框中打印数组长度,并且我在跨度中使用{{$ scope.productArray}}但是它不适用于我同样的表达式显示在swal警报中,所以告诉我如何解决这个问题?

SwaI位({         标题:" HTML欢迎来到SWAL!",         text:" html格式{{$ scope.productArray}}消息。",         html:是的     }); 这里$ scope.productArray是一个数组,我必须在swal中打印这个数组吗?

2 个答案:

答案 0 :(得分:2)

据我所知,模板语法对js字符串不起作用,但你可以使用标准的JS字符串连接:

swal({
        title: "HTML <small>Welcome to SWAL</small>!", 
        text: "A html format <span style='color:#F8BB86'>" + $scope.productArray.toString() + "<span> message.",
        html: true
    });

答案 1 :(得分:0)

试试这个。

swal({
        title: "HTML <small>Welcome to SWAL</small>!", 
        text: "A html format <span style='color:#F8BB86'>
              {{ productArray }}<span> message.",
        html: true
    });