19

我在 Qt 中打印时遇到问题。

我在 QString 变量中有 HTML 代码。在这段代码中,我想从数据库中插入数据。

我收到一个错误:

E:\apprendreQt\gestionstock6\vente.cpp:117: error: invalid operands of types 
  'const char*' and 'const char [27]' to binary 'operator+'

我怎样才能解决这个问题?

这是我的代码:

int num_bl = ui->numeroBLlineEdit->text().toInt() ;
QString html;
QString requette = "select num_facture,date,nom,prenom,code_fiscale,designation,qte_out, prix,(qte_out * prix ) as Montant, sum(qte_out * prix) as Total from ventes join produits_en_ventes join clients  join produits on ventes.vente_id = produits_en_ventes.vente_id and ventes.client_id = clients.client_id and produits_en_ventes.produit_id = produits.produit_id where ventes.client_id = :client_id ";

if(!m_db->isOpen())
    QMessageBox::critical(this,tr("Inventoria Solution"),m_db->lastError().text()) ;
else{
    m_query->clear();
    m_query->prepare(requette);
    m_query->bindValue(":client_id ", num_bl);

    if(!m_query->exec())
        QMessageBox::critical(this,tr("Inventoria Solution"),m_query->lastError().text()) ;
    else{
        html += "       <table>"
                "<thead>"
                "<tr>"
                "<th>N°</th>"
                "<th>Désignation</th>"
                "<th>Qte</th>"
                "<th>Prix Unitaire</th>"
                "<th>Montant</th>"
                "   </tr>"
                "</thead>";
        while(m_query->next())
        {
            int num_article = 1;

            html += "<tr> <td>" + num_article + "</td> <td>"+m_query->value(5).toString()+"</td> <td>"+m_query->value(6).toInt() + "</td> <td>"+m_query->value(7).toInt() + "</td> <td>" + m_query->value(8).toInt() + "</td></tr>";
            num_article++;

        }
            html += "<tfoot>"
                "<tr>"
                "<td>Total:"+ m_query->value(9).toInt()+"</td>"
                "</tr>"
                "</tfoot>"
                "</table>";
    }
    print_Html(html);


}
4

3 回答 3

26

我不确定你的错误。但是,AFAIK Qstring 不能与这样的 int 连接。

int myInt = 0;
QString text = "someString" + myInt; // WRONG

int myInt = 0;
QString text = "someString" + QString::number( myInt ); // CORRECT

或者

int myInt = 0;
QString text = "someString" % QString::number( myInt ); // CORRECT
于 2013-09-16T10:48:01.480 回答
14

如果使用operator+,则需要提供 QString 作为参数,但使用整数值代替:html += "<tr> <td>" + num_article,其中num_article声明为整数。您可以将其替换为,例如:QString::number(num_article). 在这一行中相同:

"<td>Total:"+ m_query->value(9).toInt()+"</td>"

应该替换为

"<td>Total:"+ m_query->value(9).toString()+"</td>"
于 2013-09-16T10:49:18.763 回答
3

在 Qt5 中,您可以为每个不需要本地化的字符串使用QStringLiteralconst char*来将所有字符串文字从(C++ 默认)转换为 QString,这也将使创建这些字符串QStrings更便宜(在支持它的编译器上)

对于 Qt4,您可以使用QString(const char*)构造函数或QString::fromAscii(const char*)静态函数

于 2013-09-16T10:58:20.750 回答