- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两张 table ;
考试成绩表
{id, codeid, examMarks}
考试代码表
{id, codes, codeDesc}
我正在尝试从表 examCodes 中获取代码 ID 并将其传递到 exam_marks 表,但是我无法赚取这个,我不知道问题出在哪里。任何人都可以帮助或建议我使用其他方法
这是我的 app.js
$scope.examcodesList = function() {
dataFactory.httpRequest(
'dashboard/examcodeList',
'POST',
{},
{"classes":$scope.form.codes}
)
.then(function(data) {
$scope.subje = data.subje;
});
}
这是我的 DashboardController.php
public function examcodesList($classes = ""){
$examcodesList = array();
if(!Input::has('classes')){
return $examcodesList;
}
$classes = Input::get('classes');
if(is_array($classes)){
return examcodes::whereIn('id',$classes)->get()->toArray();
}else{
return examcodes::where('id',$classes)->get()->toArray();
}
}
最佳答案
尝试一下这个。不确定这是否是您真正想要的。
if(is_array($classes)){
return examcodes::join('exam_Marks', 'exam_Marks.codeid', '=', 'examCodes.id')
->whereIn('id',$classes)
->get()->toArray();
}else{
return examcodes::join('exam_Marks', 'exam_Marks.codeid', '=', 'examCodes.id')
->where('id',$classes)
->get()->toArray();
}
关于javascript - 如何使用 DashboardController 和 js 将 Id 从一个表获取到另一个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42556602/
我有一个新的 Angular 应用程序,但我不明白为什么我的 Controller 没有注册。我得到的完整错误是: The controller with the name 'DashboardCon
更新 ActiveAdmin 后出现以下错误: http://0.0.0.0:3000/admin Routing Error uninitialized constant Admin::Dashbo
我有两张 table ; 考试成绩表 {id, codeid, examMarks} 考试代码表 {id, codes, codeDesc} 我正在尝试从表 examCodes 中获取代码 ID 并将
你好,当我使用 localhost:3000 打开我的网站时,我遇到了“未初始化常量 DashboardController”的问题。它向我显示了上述错误。它不允许我进入用户端。 我有很多供管理员和用
我正在尝试合并 active admin用rails_api应用程序。 详细信息: 因为它是一个 API,没有 cookie 和东西,所以我使用 devise_auth_token用于身份验证(不是
我是一名优秀的程序员,十分优秀!