template tag

16 questions


1 answers
102 views
0
C++ class template

#include <iostream>using namespace std;template <typename T>class Stack {private: T* mData; int mMaxSize, mTop;public : Stack(); Stack(int _size); Stack(const Stack& _data); ~Stack(); ...

1 years ago

2 answers
55 views
0
Do other Python packages have functions such as render_template in Flask?

Hello.I would like to send an email to Python this time.Create html files in advance I want to make html code by delivering the factor value like the render_template of flask.tmpHtml = render_template...


2 answers
55 views
0
API used to communicate on Android...

I am currently using an API called RestTemplate I'm communicating with the serverten thousandSometimes it gets cut off when I try to communicate.If you have a communication API to recommend, please le...

1 years ago

1 answers
88 views
0
I have a question about the web template.

Is there a site that collects web templates?

1 years ago

1 answers
114 views
0
How do we know if a function exists or not?

I want to make the C++ template do something different depending on the presence or absence of the function.Is there a function that acts as FUNCTION_EXISTS() in the code I made?template<class T>...

1 years ago

1 answers
108 views
0
flask TemplateNotFound

I created a program that loads and shows templates with Python flasks.import flask;app = flask.Flask(__name__);@app.route('/')@app.route('/home')def hello(): return flask.render_template('test.html')a...

1 years ago
« - 2 -

© 2024 OneMinuteCode. All rights reserved.