美文网首页
日常问题1

日常问题1

作者: httIsHere | 来源:发表于2017-05-22 13:01 被阅读0次

[2017.05.20]
业务流:
量表-添加量表(从系统库中进行添加,addTFromBase.php),查看量表(查看自己的量表,)
1、量表数据库
量表id和拥有者的id作为双主键(test_id+test_source);
添加量表部分:
医生在添加系统量表时将原系统量表的id+自己的id进行添加记录;
修改upload_test函数:

function upload_test($doctorId,$json){
    $testInfo = json_decode($json,true);
    //添加到系统库
    $sql = "insert into system_test (test_id,test_type,test_title,test_source,create_time,question_index,question_amount,content_before,content_after)
    values({$testInfo['test_id']},{$testInfo['test_type']},'{$testInfo['test_title']}','$doctorId',
    now(),{$testInfo['question_index']},{$testInfo['question_amount']},
    '{$testInfo['content_before']}','{$testInfo['content_after']}')";
    return insert_datas($sql);
}

医生添加过的系统量表不能重复添加,到时候需要提醒;

2、推送量表
ps: php内在进行json解析时一定要记得加第二个参数true,否则会解析失败;
json_decode($json,true);

3、js获取url参数(通过正则表达式)

function GetQueryString(name){
     var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
     var r = window.location.search.substr(1).match(reg);
     if(r!=null)return  unescape(r[2]); return null;
}

调用函数得到参数:

// 调用方法
alert(GetQueryString("参数名1"));
alert(GetQueryString("参数名2"));
alert(GetQueryString("参数名3"));

相关文章

  • 日常问题1

    [2017.05.20]业务流:量表-添加量表(从系统库中进行添加,addTFromBase.php),查看量表(...

  • python日常使用问题1

    Python3 安装后SSL问题解决办法 参考文档: https://blog.csdn.net/u0134279...

  • Python如何调整print内容的格式

    分析建模,日常问题整理(十五) 2018.11.5~2018.11.11 1 DatabaseErrorPytho...

  • PLSQL Developer新建表

    分析建模,日常问题整理(十七) 2018.11.19~2018.11.25 1 PLSQL Developer创建...

  • 日常问题

    207.05.17问题:可以同时点击多个按钮,有时候会造成业务上的问题解决:适配8.0+, 使用category ...

  • 日常问题

    会导致整个页面布局产生问题,会计算导航栏的高度self.navigationController.navigati...

  • 日常问题

    一、iOS11适配问题 1、导航栏问题自定义titleViewiOS11在自定义View上实现: 同样添加导航栏按...

  • 日常问题

    A.开发注意事项 在产品提出原型的时候,先理清思路,把所有的可能逻辑都写出来,而不是口头描述,在后续实现的过程中还...

  • Android Crash 问题分析以及解决

    Crash问题(Java与Native) 1.问题介绍 Crash问题,无论是java侧还是native侧,在日常...

  • xgb一些常见问题汇总

    分析建模,日常问题整理(二十九) 2019.9.30~2020.3.13 xgboost问题1)保存为txt树结构...

网友评论

      本文标题:日常问题1

      本文链接:https://www.haomeiwen.com/subject/rwrpxxtx.html