mirror of
https://github.com/oatpp/oatpp.git
synced 2025-03-31 18:30:22 +08:00
web::url::mapping::Pattern: fix reconstruct method
This commit is contained in:
parent
702f465c40
commit
c59248414e
@ -181,15 +181,17 @@ bool Pattern::match(const StringKeyLabel& url, MatchMap& matchMap) const {
|
||||
|
||||
}
|
||||
|
||||
oatpp::String Pattern::reconstruct(const data::mapping::Tree& params, const oatpp::String& tail) const {
|
||||
oatpp::String Pattern::reconstruct(const std::unordered_map<oatpp::String, oatpp::String>& params, const oatpp::String& tail) const {
|
||||
oatpp::data::stream::BufferOutputStream stream;
|
||||
for (const std::shared_ptr<Part>& part : *m_parts) {
|
||||
if(part->function == Part::FUNCTION_CONST) {
|
||||
stream.writeSimple("/", 1);
|
||||
stream.writeSimple(part->text);
|
||||
} else if(part->function == Part::FUNCTION_VAR) {
|
||||
stream.writeSimple(params[part->text].toString());
|
||||
stream.writeSimple("/", 1);
|
||||
stream.writeSimple(params.at(part->text));
|
||||
} else if(part->function == Part::FUNCTION_ANY_END) {
|
||||
stream.writeSimple("/", 1);
|
||||
stream.writeSimple(tail);
|
||||
}
|
||||
}
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
#include "oatpp/data/share/MemoryLabel.hpp"
|
||||
#include "oatpp/utils/parser/Caret.hpp"
|
||||
#include "oatpp/data/mapping/Tree.hpp"
|
||||
|
||||
#include <list>
|
||||
#include <unordered_map>
|
||||
@ -112,7 +111,7 @@ public:
|
||||
|
||||
bool match(const StringKeyLabel& url, MatchMap& matchMap) const;
|
||||
|
||||
oatpp::String reconstruct(const data::mapping::Tree& params, const oatpp::String& tail) const;
|
||||
oatpp::String reconstruct(const std::unordered_map<oatpp::String, oatpp::String>& params, const oatpp::String& tail) const;
|
||||
oatpp::String toString() const;
|
||||
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user