湖北科技学院权威解读ChatGPT编程超能力13个章节50个实例小白也能理解

前言

在这个快速变化的技术时代,编程已经成为现代社会不可或缺的一部分。ChatGPT作为一种新兴的工具,无疑为开发者提供了新的思路和方法。今天,我们将通过十三个章节、五十个示例,为大家展示ChatGPT在编程开发方面的无限潜力。

一、代码生成

ChatGPT可以生成各种Web开发任务的代码,极大地提高了工作效率。它不仅能够生成简洁明了的HTML和CSS代码,还能轻松生成JavaScript函数,甚至数据库查询语句,都能轻松搞定Web开发。

1.1 提示词:

Generate a semantic and accessible HTML and (framework) CSS [UI component] consisting of [component parts]. The [component parts] should be [layout].

举例:

Generate a semantic HTML and Tailwind CSS Contact Support form consisting of the users name, email, issue type, and message. The form elements should be stacked vertically and placed inside a card.

联系支持

这个表单中,姓名和电子邮件是必填字段,因此可以在输入框中使用required属性。您还可以根据需要自定义CSS样式。

1.2 提示词:

Write a JavaScript function. It accepts [input] and returns [output].

举例:

Write a JavaScript function that accepts a full name as input and returns avatar letters.

function getAvatarLetters(fullName) {

// 分割全名为名字和姓氏

const names = fullName.trim().split(' ');

let avatar = '';

// 遍历每个名字并将其第一个字符添加到头像中

for (let i = 0; i < names.length; i++) {

avatar += names[i][0];

if (i > 2) {

avatar = avatar.substring(0, 2);

}

}

// 返回头像

return avatar;

}

例如,如果输入的全名为“张三”,则该函数将返回“张”,如果输入的全名为“张三丰”,则该函数将返回“张三”。

1.3 提示词:

Write an/ an Express.js API for fetching current user's profile information using MongoDB.

举例:

const express = require('express');

const mongoose = require('mongoose');

const bodyParser = require('body-parser');

const app = express();

// 连接到MongoDB数据库

mongoose.connect(mongodb://localhost/myapp, { useNewUrlParser: true })

.then(() => console.log(MongoDB连接成功))

.catch((err) => console.error(MongoDB连接失败:, err));

// 创建用户模型

const userSchema = new mongoose.Schema({

name: String,

email: String,

password: String});

const User = mongoose.model(User, userSchema);

// 添加中间件

app.use(bodyParser.urlencoded({ extended: true }));

app.use(bodyParser.json());

// 定义路由路径 /api/profile 获取当前用户个人资料信息。

app.get('/api/profile', async (req, res) => {

const userId;

try{

userId=req.userId;

} catch(err){

res.status(500).send("获取用户信息失败");

}

if (!userId || !req.user._id.equals(userId)) {

res.status(403).send("Forbidden");

} else {

User.findById(userId)

.then(user=>{

if(!user){

res.status(404).send("找不到用户");

}else{

const userInfo={name:user.name,email:user.email};

res.send(userInfo);

}})

}

});

// 启动服务器监听3000端口。

var port=3000;

app.listen(port,function(){

console.log(服务器已启动,并监听${port}端口);

});