我最近開始使用codeigniter。試圖爲新表格創建新模型。看來save()方法工作不正常。我無法在桌面上看到新記錄。我在網絡和計算器上做了一些研究,但沒有用。有人可以檢查我的代碼和建議。 <?php if (! defined('BASEPATH')) exit('No direct script access allowed');
2
3 class Listin
我有一個user模型 class User
include Datamapper::Resource
property :id, Serial
property :password_token, String
def generate_token
self.password_token = SecureRandom.hex
self.
Datamapper未保存我的用戶模型。 (這是一個西納特拉Web應用程序和數據庫是AWS RDS的MySQL數據庫。) 用戶模型: class User
include DataMapper::Resource
property :uid, Serial
property :user, String, :key => true, :length => 3..20
我有兩個連接到同一個數據庫的應用程序。 我寫了一個數據庫掛鉤,像這樣: def call_side_effect(record)
puts record
# my application actually does something more complicated here
end
class Verb
include DataMapper::Resourc
我已經建立了一個基本的體系結構,其中一個服務委託數據檢索到數據映射器(下面的僞代碼)。 ProductService->fetchById(123);
class ProductService
{
public function fetchById(id)
{
product = ProductMapper->fetch('id', id);
//