Jquery的:
for (int x = 0; x < feesJtbl.getRowCount(); x++) {
String valueWithPesosSign = ((String) myModel.getValueAt(x, 1));
String stringAmount = valueWithPesosSign.replaceAll("\\P{Print}", "");
//JOptionPane.showMessageDialog(null, stringAmount);
doubleAmount = Double.parseDouble(stringAmount);
totalOfTuition += doubleAmount;
}
产品名称和价格正在显示但不是图像。 var res = $.parseJSON(data);
if(res.status == true)
{
//console.log(res.show.image);
var result = '<img src="{{asset('newuploads/+res.show.image+')}}"><br>'+
'Product Name:'+res.show.product_name+'<br>'+
'Price:'+res.show.price+'<br>';
$('#result').html(result);
}
}
提供正确的图像名称,但我无法显示图像。
在php中,(laravel)这样做:
console.log(res.show.image);