1

fastcgi++ 2 ベータ版でセッションを使用すると問題が発生します。

これが私のコードです:

#include <fastcgi++/http.hpp>
#include <fastcgi++/request.hpp>
#include <fastcgi++/manager.hpp>
#include <string>

using namespace std;
using namespace Fastcgipp::Http;

class SessionsPage : public Fastcgipp::Request<char> {
    static Sessions<string> sessions;
    Sessions<string>::iterator session;

    bool response() {
        sessions.cleanup();

        out << "Content-Type: text/html;\r\n\r\n";
        out << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">" << std::endl;
        out << "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"fr\" >" << std::endl;
        out << "    <head>" << std::endl;
        out << "        <title>Sessions</title>" << std::endl;
        out << "        <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />" << std::endl;
        out << "    </head>" << std::endl;
        out << "    <body>" << std::endl;
        out << "        <p>Hello World!</p>" << std::endl;
        out << "    </body>" << std::endl;
        out << "</html>" << std::endl;
        return true;
    }
};

int main() {
    Fastcgipp::Manager<SessionsPage> fcgi;
    fcgi.handler();
}

次のエラーが発生しました:

/tmp/ccRujo45.o: In function `SessionsPage::response()':
sessions_page.cpp:(.text._ZN12SessionsPage8responseEv[SessionsPage::response()]+0xd): undefined reference to `SessionsPage::sessions'
collect2: ld a retourné 1 code d'état d'exécution

この行にコメントすると、次のようにコンパイルされます。

sessions.cleanup();

私はこのチュートリアルを使用しています。

ご協力いただきありがとうございます。

4

1 に答える 1

1

static Sessions<string> sessions;クラスでのみ宣言されます。その定義を作成する必要があります。この場合Sessions<string> SessionsPage::sessions;、クラスが 1 つの翻訳単位でのみ使用されることを考えると、クラスの後に固執しても問題ないと思います。(複数の翻訳単位で使用する場合、静的変数は1 つの翻訳単位でのみ定義する必要があります)

于 2011-06-15T23:14:22.033 に答える