gpt4 book ai didi

javascript - 如何在 AngularJs 中打印 swal Alert 框中的数组?

转载 作者:行者123 更新时间:2023-12-01 02:36:42 25 4
gpt4 key购买 nike

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

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

斯瓦尔({ title: "HTML 欢迎来到 SWAL!", text: "html 格式的 {{$scope.productArray}} 消息。", html: 正确 });这里 $scope.productArray 是一个数组,我必须在 swal 中打印这个数组?

最佳答案

据我所知,模板语法不适用于 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
});

关于javascript - 如何在 AngularJs 中打印 swal Alert 框中的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47853178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com