var newList = [];
res.data.data.map((item,index)=>{
newList.push(Object.assign({},item,{ischeck:false}))
console.log(newList);
//判断抢修级别
for(var i=0;i{
console.log(err.statusText)
action(jzName,fun){
$.ajax({
type:'get',
url:'/flow',
async :false,
data:{
jzName:jzName
success:function(res){
if(res){
var dataObj = eval('('+ res+')');
//取流量
var num = 0;
for(var k=0;k
vue
在同
一个
组件内;
methods
中
的
一个
方法调用
methods
中
的另外
一个
方法
可以在调用的时候 this.$options.
methods
.test2();
this.$options.
methods
.test2();
一个
方法调用另外
一个
方法;
new
Vue
({
el: '#app',
data: {
test:111,
methods
: {
test1:function(){
alert(this.test)
test2:function(){
alert("this is test2")
alert(this.test)
$.ajax({
type: "post",
url: 'http://localhost:8081/GFTJKZZPT/interfaces/recordController/allResult.do',
data: {
//当前用户的身份证
idCard: '362227
let self = this //使用新变量替换this,以免this无效
//updateStudentInfoToServer是
一个
将本身部分数据异步上传的接口,接收三个参数,其
中
第
一个
是数据,第二、三个是
函数
,第二、三个
函数
使用function(){}形式书写
updateStudentInfoToServer:function(data, networkOk, networkError){
let postData = this.$qs.stringify({
data:data
this.axios.post('/api/update/updateStudent
this.$emit('closeChange',false);
// 父组件使用回调方法
<div @closeChange="closeCom($event, '1')"></div>
// 方法
closeCom(msg, val) {
// msg:false
// val:1
this.ms
在
Vue
3
中
,可以通过在组件
中
使用 `setup()`
函数
来调用封装的
函数
。首先,需要将封装的
函数
导出,然后在组件
中
引入该
函数
,并在 `setup()`
函数
中
调用它。例如:
```javascript
// 封装的
函数
export function myFunction() {
// do something
// 组件
中
引入
函数
import { myFunction } from './utils';
export default {
setup() {
// 调用
函数
myFunction();
注意,`setup()`
函数
只能在
Vue
3
中
使用,如果你正在使用
Vue
2 或更早的版本,则需要使用不同的方法来调用封装的
函数
。