@post = Table.find(params[:post_id])
@post.destroy
Как в руби конечно не получится так что с этим я пока напиздел
@message = Message.find('hello world')
var message = $('message').find('hello world')
дошел пока только до такого варианта:
<?php
class ActiveCode {
static $called = false;
}
$_ = create_function('$model', 'ActiveCode::$called = $model;');
function find ($params) {
if ($model = ActiveCode::$called) {
ActiveCode::$called = false;
return $model.' => '.$params.' called';
} else {
return false;
}
}
$message = $_('message').find('hello world');
echo $message;
что думаете по этому поводу?
з.ы: пробовал так:
define ('message', function () {
ActiveCode::$called = $model;
});
типа чтобы
$message = message.find('hello world');
не получилось, пичалька :(