- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望在我的应用程序中添加“发票”时可以在数据库中查看客户,这样我就不必输入完整的名称,而只需输入一个选择输入,我会在其中即时接收客户,我不知道如何按照 MVC 解决。
Controller/invoice.php
<?php
include 'Controller/controller.php';
class InvoicesController extends Controller{
public function index() {
$view=$this->loadView('invoices');
$view->index();
}
public function add() {
$view=$this->loadView('invoices');
$view->add();
}
public function insert() {
$model=$this->loadModel('invoices');
$model->insert($_POST);
$this->redirect('?task=invoices&action=index');
}
public function delete() {
$model=$this->loadModel('invoices');
$model->delete($_GET['id']);;
$this->redirect('?task=invoices&action=index');
}
public function edit() {
$model=$this->loadView('invoices');
$model->edit($_GET['id']);
}
public function getClients(){
$model = $this->loadModel('clients');
$model->getAll();
}
public function editInvoice(){
$model = $this->loadModel('invoices');
$model->editInvoice($_POST);
$this->redirect('?task=invoices&action=index');
}
}
模型/invoices.php
<?php
include 'Model/model.php';
class InvoicesModel extends Model{
public function insert($data) {
$ins=$this->pdo->prepare("INSERT INTO invoices (id,Number,Name,Service,Symbol,Unit, Tax, Value)"
. " VALUES ('',:number,:name,:service,'szt','2',:tax,:value)");
$ins->bindValue(':name', $data['name'], PDO::PARAM_STR);
$ins->bindValue(':number', $data['number'], PDO::PARAM_STR);
$ins->bindValue(':service', $data['service'], PDO::PARAM_STR);
$ins->bindValue(':tax', $data['tax'], PDO::PARAM_STR);
$ins->bindValue(':value', $data['value'], PDO::PARAM_STR);
$ins->execute();
}
public function getAll() {
return $this->select('invoices');
}
public function getId() {
return $this->getLastId('invoices');
}
public function edit($id) {
return $this->select('invoices',' * ',' id = '.$id.' ');
}
public function editInvoice($data){
$edit=$this->pdo->prepare("UPDATE invoices SET Name = :name WHERE id = :id");
$edit->bindValue(':name', $data['name']);
$edit->bindValue(':id', $data['id']);
$edit->execute();
}
public function delete($id) {
$del=$this->pdo->prepare('DELETE FROM invoices where id=:id');
$del->bindValue(':id', $id, PDO::PARAM_INT);
$del->execute();
}
}
查看/invoice.php
<?php
include 'View/view.php';
class InvoicesView extends View{
public function index() {
$cat=$this->loadModel('invoices');
$this->set('catsData', $cat->getAll());
$this->render('indexCategory');
}
public function add() {
$inv=$this->loadModel('invoices');
$this->set('invoicesData', $inv->getLastId('invoices'));
$this->render('addCategory');
}
public function getClients(){
$get = $this->loadModel('clients');
$this->set('clientsData', $get->getClients());
$this->render('addCategory');
}
public function edit($id){
$edit = $this->loadModel('invoices');
$this->set('invoicesData', $edit->edit($_GET['id']));
$this->render('editInvoice');
}
}
和模板/AddCategory.html.php
<?php include 'templates/header.html.php'; ?></pre>
<h1>Dodaj kontrahenta</h1>
<?php
?>
<form action="?task=invoices&action=insert" method="post">
Nazwa kontrahenta: <input type="text" name="name" /><br>
NIP: <input type="text" name="nip" /><br>
Adres: <input type="text" name="adress" /><br>
Kod Pocztowy: <input type="text" name="postcode" /><br>
Miasto: <input type="text" name="city" /><br>
Telefon: <input type="text" name="phone" /><br>
Email: <input type="text" name="email" /><br>
<input type="submit" value="Dodaj" /></form>
<pre>
<?php include 'templates/footer.html.php'; ?>
如果我这样做
<?php include 'templates/header.html.php'; ?></pre>
<h1>Dodaj kontrahenta</h1>
<?php
$data = $this->set('clientsData', $get->getClients());
var_dump($data);
?>
<form action="?task=invoices&action=insert" method="post">
Nazwa kontrahenta: <input type="text" name="name" /><br>
NIP: <input type="text" name="nip" /><br>
Adres: <input type="text" name="adress" /><br>
Kod Pocztowy: <input type="text" name="postcode" /><br>
Miasto: <input type="text" name="city" /><br>
Telefon: <input type="text" name="phone" /><br>
Email: <input type="text" name="email" /><br>
<input type="submit" value="Dodaj" /></form>
<pre>
<?php include 'templates/footer.html.php'; ?>
我收到错误
Notice: Undefined variable: get in /home/krytykak/domains/jozwiak.edu.pl/public_html/templates/addCategory.html.php on line 4
Fatal error: Call to a member function getClients() on a non-object in /home/krytykak/domains/jozwiak.edu.pl/public_html/templates/addCategory.html.php on line 4
最佳答案
$get->getClients()
$get 没有在任何地方定义。您正在调用 getClients(),它是 InvoicesController 对象的成员。所以我在想 $get = new InvoicesController();
应该在执行之前初始化 $data = $this->set('clientsData', $get->getClients() );
关于javascript - 从数据库下载形成PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30357308/
我正在阅读 deduction guides在 C++17 中。假设我们有以下示例: template struct Custom { }; template struct Person {
我在我的 xamarin 表单项目中使用选项卡式页面。我正在尝试在 Android 的 MyTabsRenderer 类中使用 OnTabReselected 事件。但不会调用 OnTabSelect
我对 NSPredicate 有疑问。想不出一种写法,也找不到类似的东西。我有这个谓词: [NSPredicate predicateWithFormat:@"followedBy.username
我的模态中有一个小表单,如下所示: Name
我正在尝试制作用于表单验证的 jquery 插件(用于学习)。在此表单中,我无法获取类名称为“required”的所有表单字段。代码如下: (function( $ ) { $.fn.kValidat
在我的 Android 应用中,我从 Google Place API 获取附近餐馆的列表。 但不幸的是,这个列表没有给出餐厅的菜单。 我有 T_RESTAURANT 和 T_MENU 表。 假设我在
我正在尝试使用 angular.js 和 devise 设置登录。 这是我的表单 html: Email Password
谁能告诉我如何让生成的文档从表单中提取数据并将其作为标题?我已经查看了 Google Script 文档,但到目前为止我还没有找到任何可以回答我或向我展示类似示例的内容。到目前为止,我在这里找到了相关
当我有这样的表格时: “.”是什么意思?在行动中代表什么? 最佳答案 action 属性告诉表单将表单数据发布到哪里。 . 代表当前目录,所以我会说这是发布到当前目录中的默认文档。 相对路径有几
Mockito 似乎是一个非常漂亮的 Java stub /模拟框架。唯一的问题是我找不到任何关于使用他们的 API 的最佳方式的具体文档。测试中常用的方法包括: doXXX(???) : Stubb
我有 2 份表格。我从一种形式创建并展示了另一种形式。效果很好。但是,当我尝试从创建该表单的表单中关闭或处理该表单时,出现以下异常: Exception : Value Dispose() can
将我的应用程序上传到 TestFlight 时出现以下错误。 但是,我没有看到 missing 的任何位置Xamarin Assets 菜单中的图标。 (76x76、167x167 和 152x152
我的models.py文件看起来像这样 from django.db import models from django.template.defaultfilters import slugify
问题 学习 Xamarin 大学类(class) XAM120 .在将我的 IDial 实现添加到我的 UWP 项目时遇到障碍。出于某种原因,我的项目没有在我的系统上使用 PhoneCallManag
我在应用程序的列表页面上使用了 FloatingActionButton,我还想添加一个 searchBar。但我无法向他们展示该页面。我的代码和屏幕截图已关闭。如何显示搜索栏? FAB Github
实体产品和类别之间存在经典的多对多关系,其中一个产品可能包含在多个类别中。我们想在 UI 中使用带有 UITableViewController 或 UICollectionView 的 NSFetc
html 代码: js代码: function show(){ $.ajax({
我有一个用户列表。现在任何一个名字很长的用户都在搞乱排列/排列。 我认为通过为名称设置大小可以达到目的: .invitee .name{ height: 50px; width: 115px;
我正在使用 Flask 框架和 WTforms 库,我在更改选择字段中每个选项的颜色时遇到了问题,因为它总是显示为黑色而不是红色 我在模板中有下一个表单
Dugen Chen 写了一篇有用的文章,介绍如何将 HTML5 验证中的“required”属性添加到 Django 表单字段。 http://duganchen.ca/elegantly-addi
我是一名优秀的程序员,十分优秀!