上一页 1 2 3 4 5 6 7 8 9 ··· 58 下一页
摘要: (1)根据错误提示信息,找到出错入口文件: E:\SVN\zlpt\node_modules\node-ipc\entities\Defaults.js 然后指定位置添加如下代码即可: const os = require('os');os.hostname=()=>"localhost"; 阅读全文
posted @ 2023-09-02 15:59 学无边涯 阅读(165) 评论(0) 推荐(1) 编辑
摘要: 1,申请好证书 96net.com.cn.pem 96net.com.cn.key 2,若无 /etc/httpd/ssl 目录,可通过 mkdir /etc/httpd/ssl 命令行创建。 3,首次安装的 Apache 服务器,conf.d、conf、conf.modules.d 等目录默认在 阅读全文
posted @ 2023-06-11 21:01 学无边涯 阅读(89) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <p v-for="(item,index) in names" :key="index">{{item}}{{index}}</p> </div> <div v-for="value,key in results">{{key}}-{{value}}</div> 阅读全文
posted @ 2023-06-04 22:58 学无边涯 阅读(84) 评论(0) 推荐(0) 编辑
摘要: <template> <div v-if="type 'a'">aaa</div> <div v-else-if="type 'b'">bbb</div> <div v-else>ccc</div> <div v-show="flag">111</div> </template><script> e 阅读全文
posted @ 2023-06-04 22:17 学无边涯 阅读(98) 评论(0) 推荐(0) 编辑
摘要: <template> <div v-bind:id="main" v-bind:class="message">aaa</div></template><script> export default{ data(){ return{ message:'active', main:'mainid' } 阅读全文
posted @ 2023-06-04 22:00 学无边涯 阅读(156) 评论(0) 推荐(0) 编辑
摘要: <template> {{message}} {{number+1}} {{ok?'yes':'no'}}</template><script> export default{ data(){ return{ message:'aaa', number:10, ok:false } } }</scr 阅读全文
posted @ 2023-06-04 21:39 学无边涯 阅读(7) 评论(0) 推荐(0) 编辑
摘要: win7下安装nodejs16.4.01、nodejs下载地址:https://nodejs.org/dist/v13.9.0/https://nodejs.org/dist/latest-v16.x/2、通过以上路径,分别下载下面资源包:node-v13.9.0-x64.msinode-v16.1 阅读全文
posted @ 2023-06-04 20:12 学无边涯 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 原因是vue2和vue3写法不对 正确是 <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="https://unpkg.com/vue@nex 阅读全文
posted @ 2023-06-04 13:45 学无边涯 阅读(1929) 评论(0) 推荐(0) 编辑
摘要: 控制器 php artisan make:controller Admin\SystemController 路由 Route::get('/sa', 'Admin\StudentController@chaxun'); 控制器 php artisan make:controller Admin\U 阅读全文
posted @ 2023-03-19 10:29 学无边涯 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 第一,定义路由 Route::get('/hello', 'UserController'); 第二,控制定义 __invoke namespace App\Http\Controllers;use Illuminate\Http\Request;class UserController exten 阅读全文
posted @ 2023-03-18 21:04 学无边涯 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 58 下一页