我只是在symfony中创建了我的第一个应用程序,我遇到了路由问题。
#define _CRT_SECURE_NO_WARNINGS
#include <cstring>
#include <iostream>
using namespace std;
int main() {
char word1[10][10] = { "Hello", "Bonjour", "Ni Hao" };//increase array size to fit word
char word2[10][10] = { "Steve", "Pei", "Frank" };//same here
char temp[10] = "";//same here
for (int i = 0; i < 10; i++) {
strcpy(temp, word1[i]);
strcpy(word1[i], word2[i]);
strcpy(word2[i], temp);
}
for (int i = 0; i <10; i++) {
cout << word2[i] << " ";
}
cout << endl;
}
我上面有代码。问题出在{id},因为在我的数据库中我有三个任务,点击我总是得到第一个并不重要。要显示另一个我必须手动更改它。
现在我发现了另一个问题。当我删除所有任务并创建两个新的我有新的id为他们。这种情况是否正确?